MCPcopy Create free account
hub / github.com/Ayush7614/Daily-Coding-DS-ALGO-Practice / Node

Method Node

Gfg/Java/Diameter of Binary Tree.java:12–16  ·  view source on GitHub ↗
(int data)

Source from the content-addressed store, hash-verified

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

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected