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

Method Node

17_Binary Search Trees (2)/ArrayToBST.java:7–10  ·  view source on GitHub ↗
(int data)

Source from the content-addressed store, hash-verified

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

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected