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

Method Node

TreeRepBinary.java:15–18  ·  view source on GitHub ↗
(int data)

Source from the content-addressed store, hash-verified

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