Skip to content

Commit 263af25

Browse files
Update dijkstra_adj_list.java
1 parent da1cd6a commit 263af25

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

9 Graphs/dijkstra_adj_list.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
https://github.com/JayakrishnaThota/LC/blob/master/743.%20Network%20Delay%20Time
44
*/
55

6-
//Dijkstras Time Complexity for adjancecy matrix representation: O(V^2 + ElogV) time and O(V+E) space
6+
//Dijkstras Time Complexity for adjancecy matrix representation: O(E + VlogV) time and O(V+E) space
77

88
package Graphs;
99
import java.util.*;

0 commit comments

Comments
 (0)