(int p1[], int p2[])
| 13 | // [node, dist] |
| 14 | PriorityQueue<int[]> pq = new PriorityQueue<>(new Comparator<int[]>(){ |
| 15 | public int compare(int p1[], int p2[]){ |
| 16 | return p1[1] - p2[1]; |
| 17 | } |
| 18 | }); |
| 19 | int dist[] = new int[V]; |
| 20 | Arrays.fill(dist,Integer.MAX_VALUE); |
nothing calls this directly
no outgoing calls
no test coverage detected