MCPcopy Create free account
hub / github.com/Tiwarishashwat/InterviewCodes / Node

Class Node

TreeRepBinary.java:10–19  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

8 }
9}
10class Node
11{
12 int data;
13 Node left;
14 Node right;
15 public Node(int data)
16 {
17 this.data=data;
18 }
19}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected