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

Method main

java/Chapter 4/Question4_2/Question.java:10–17  ·  view source on GitHub ↗
(String a[])

Source from the content-addressed store, hash-verified

8 }
9
10 public static void main(String a[])
11 {
12 Graph g = createNewGraph();
13 Node[] n = g.getNodes();
14 Node start = n[3];
15 Node end = n[5];
16 System.out.println(search(g, start, end));
17 }
18
19 public static Graph createNewGraph()
20 {

Callers

nothing calls this directly

Calls 3

createNewGraphMethod · 0.95
getNodesMethod · 0.95
searchMethod · 0.95

Tested by

no test coverage detected