Skip to content

Commit 52918ee

Browse files
committed
Update READMEs.
1 parent 9f8fd33 commit 52918ee

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -102,8 +102,9 @@ a set of rules that precisely define a sequence of operations.
102102
* `B` [Depth-First Search](src/algorithms/graph/depth-first-search) (DFS)
103103
* `B` [Breadth-First Search](src/algorithms/graph/breadth-first-search) (BFS)
104104
* `B` [Kruskal’s Algorithm](src/algorithms/graph/kruskal) - finding Minimum Spanning Tree (MST) for weighted undirected graph
105-
* `A` [Dijkstra Algorithm](src/algorithms/graph/dijkstra) - finding shortest path to all graph vertices
106-
* `A` [Bellman-Ford Algorithm](src/algorithms/graph/bellman-ford) - finding shortest path to all graph vertices
105+
* `A` [Dijkstra Algorithm](src/algorithms/graph/dijkstra) - finding shortest paths to all graph vertices from single vertex
106+
* `A` [Bellman-Ford Algorithm](src/algorithms/graph/bellman-ford) - finding shortest paths to all graph vertices from single vertex
107+
* `A` [Floyd-Warshall Algorithm](src/algorithms/graph/floyd-warshall) - find shortest paths between all pairs of vertices
107108
* `A` [Detect Cycle](src/algorithms/graph/detect-cycle) - for both directed and undirected graphs (DFS and Disjoint Set based versions)
108109
* `A` [Prim’s Algorithm](src/algorithms/graph/prim) - finding Minimum Spanning Tree (MST) for weighted undirected graph
109110
* `A` [Topological Sorting](src/algorithms/graph/topological-sorting) - DFS method
@@ -113,7 +114,6 @@ a set of rules that precisely define a sequence of operations.
113114
* `A` [Hamiltonian Cycle](src/algorithms/graph/hamiltonian-cycle) - Visit every vertex exactly once
114115
* `A` [Strongly Connected Components](src/algorithms/graph/strongly-connected-components) - Kosaraju's algorithm
115116
* `A` [Travelling Salesman Problem](src/algorithms/graph/travelling-salesman) - shortest possible route that visits each city and returns to the origin city
116-
* `A` [Floyd-Warshall algorithm](src/algorithms/graph/floyd-warshall) - a single execution of the algorithm will find the lengths (summed weights) of shortest paths between all pairs of vertices
117117
* **Uncategorized**
118118
* `B` [Tower of Hanoi](src/algorithms/uncategorized/hanoi-tower)
119119
* `B` [Square Matrix Rotation](src/algorithms/uncategorized/square-matrix-rotation) - in-place algorithm

README.zh-TW.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ _Read this in other languages:_
117117
* **動態編程** - build up to a solution using previously found sub-solutions
118118
* [費伯納西數列](src/algorithms/math/fibonacci)
119119
* [萊溫斯坦距離](src/algorithms/string/levenshtein-distance) - minimum edit distance between two sequences
120-
* [最長共同子序列](src/algorithms/sets/longest-common-subsequnce) (LCS)
120+
* [最長共同子序列](src/algorithms/sets/longest-common-subsequence) (LCS)
121121
* [最長共同子字串](src/algorithms/string/longest-common-substring)
122122
* [最長遞增子序列](src/algorithms/sets/longest-increasing-subsequence)
123123
* [最短共同子序列](src/algorithms/sets/shortest-common-supersequence)

0 commit comments

Comments
 (0)