MCPcopy Create free account
hub / github.com/Deepali-Srivastava/data-structures-and-algorithms-in-java / Node

Class Node

Tree/binaryTree/Node.java:8–20  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

6package binaryTree;
7
8public class Node
9{
10 Node lchild;
11 char info;
12 Node rchild;
13
14 public Node(char ch)
15 {
16 info=ch;
17 lchild=null;
18 rchild=null;
19 }
20}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected