MCPcopy Create free account
hub / github.com/PrajaktaSathe/Java / Node

Method Node

Programs/BinaryTreeInorder.java:40–44  ·  view source on GitHub ↗
(int data)

Source from the content-addressed store, hash-verified

38 Node left;
39 Node right;
40 Node(int data) {
41 this.data = data;
42 left = null;
43 right = null;
44 }
45}
46
47class GfG {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected