MCPcopy Index your code
hub / github.com/careercup/ctci / main

Method main

java/Chapter 4/Question4_4/QuestionDFS.java:47–52  ·  view source on GitHub ↗
(String[] args)

Source from the content-addressed store, hash-verified

45
46
47 public static void main(String[] args) {
48 int[] nodes_flattened = {1, 2, 3, 4, 5, 6, 7, 8, 9, 10};
49 TreeNode root = AssortedMethods.createTreeFromArray(nodes_flattened);
50 ArrayList<LinkedList<TreeNode>> list = createLevelLinkedList(root);
51 printResult(list);
52 }
53
54}

Callers

nothing calls this directly

Calls 3

createTreeFromArrayMethod · 0.95
createLevelLinkedListMethod · 0.95
printResultMethod · 0.95

Tested by

no test coverage detected