MCPcopy Create free account
hub / github.com/apna-college/Alpha / Node

Method Node

16_BinaryTrees/SumTree.java:6–10  ·  view source on GitHub ↗
(int data)

Source from the content-addressed store, hash-verified

4 Node left, right;
5
6 public Node(int data) {
7 this.data = data;
8 this.left = null;
9 this.right = null;
10 }
11 }
12
13 public static int convertToSumTree(Node root) {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected