MCPcopy Index your code
hub / github.com/kunal-kushwaha/DSA-Bootcamp-Java / main

Method main

lectures/20-trees/code/introduction/Main.java:4–14  ·  view source on GitHub ↗
(String[] args)

Source from the content-addressed store, hash-verified

2
3public class Main {
4 public static void main(String[] args) {
5 // Scanner scanner = new Scanner(System.in);
6 // BinaryTree tree = new BinaryTree();
7 // tree.populate(scanner);
8 // tree.prettyDisplay();
9
10 BST tree = new BST();
11 int[] nums = { 5, 2, 7, 1, 4, 6, 9, 8, 3, 10 };
12 tree.populate(nums);
13 tree.display();
14 }
15}

Callers

nothing calls this directly

Calls 2

populateMethod · 0.95
displayMethod · 0.95

Tested by

no test coverage detected