Skip to content

Commit dc2b7ce

Browse files
committed
Update README.
1 parent eec2df9 commit dc2b7ce

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

Diff for: README.md

+2-3
Original file line numberDiff line numberDiff line change
@@ -69,13 +69,12 @@
6969
* [Dijkstra Algorithm](https://github.com/trekhleb/javascript-algorithms/tree/master/src/algorithms/graph/dijkstra) - finding shortest path to all graph vertices
7070
* [Bellman-Ford Algorithm](https://github.com/trekhleb/javascript-algorithms/tree/master/src/algorithms/graph/bellman-ford) - finding shortest path to all graph vertices
7171
* [Detect Cycle](https://github.com/trekhleb/javascript-algorithms/tree/master/src/algorithms/graph/detect-cycle) - for both directed and undirected graphs (DFS and Disjoint Set based versions)
72+
* Prim’s Algorithm - finding Minimum Spanning Tree (MST)
73+
* Kruskal’s Algorithm - finding Minimum Spanning Tree (MST)
7274
* Topological Sorting
7375
* Eulerian path, Eulerian circuit
7476
* Strongly Connected Component algorithm
7577
* Shortest Path Faster Algorithm (SPFA)
76-
* **Minimum Spanning Tree**
77-
* Prim’s algorithm
78-
* Kruskal’s algorithm
7978
* **Uncategorized**
8079
* Union-Find
8180
* Maze

0 commit comments

Comments
 (0)