Skip to content

Commit 06b311a

Browse files
committed
chore: fix links
1 parent 80a45e0 commit 06b311a

File tree

3 files changed

+21
-21
lines changed

3 files changed

+21
-21
lines changed

docs/Algorithms/Overview.mdx

Lines changed: 19 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -60,34 +60,34 @@ typically to solve a class of problems or to perform a computation. (Source: Wik
6060
[[Code](https://github.com/nejcm/js-algorithms/blob/master/src/algorithms/graph/breadth-first-search/index.ts)]
6161
- `B` [Depth first search](/docs/Algorithms/Tree/BFS&DFS)
6262
[[Code](https://github.com/nejcm/js-algorithms/blob/master/src/algorithms/graph/depth-first-search/index.ts)]
63-
- `B` [Is balanced tree](/docs/Algorithms/Tree/IsBalanced)
63+
- `B` Is balanced tree
6464
[[Code](https://github.com/nejcm/js-algorithms/blob/master/src/algorithms/tree/is-balanced/index.ts)]
65-
- `B` [Is complete tree](/docs/Algorithms/Tree/IsComplete)
65+
- `B` Is complete tree
6666
[[Code](https://github.com/nejcm/js-algorithms/blob/master/src/algorithms/tree/is-complete/index.ts)]
67-
- `B` [Is full tree](/docs/Algorithms/Tree/IsFull)
67+
- `B` Is full tree
6868
[[Code](https://github.com/nejcm/js-algorithms/blob/master/src/algorithms/tree/is-full/index.ts)]
69-
- `B` [Is perfect tree](/docs/Algorithms/Tree/IsPerfect)
69+
- `B` Is perfect tree
7070
[[Code](https://github.com/nejcm/js-algorithms/blob/master/src/algorithms/tree/is-perfect/index.ts)]
7171

7272
**Graph**
7373

74-
- `A` [Articulation points](/docs/Algorithms/Graph/ArticulationPoints)
74+
- `A` [Articulation points](/docs/Algorithms/Graph/ArticulationPoints.mdx)
7575
[[Code](https://github.com/nejcm/js-algorithms/blob/master/src/algorithms/graph/articulation-points/index.ts)]
76-
- `A` [Bellman-Ford algorithm](/docs/Algorithms/Graph/BellmanFord)
76+
- `A` [Bellman-Ford algorithm](/docs/Algorithms/Graph/BellmanFord.mdx)
7777
[[Code](https://github.com/nejcm/js-algorithms/blob/master/src/algorithms/graph/bellman-ford/index.ts)]
7878
- `B` [Breadth first search](/docs/Algorithms/Graph/BFS&DFS)
7979
[[Code](https://github.com/nejcm/js-algorithms/blob/master/src/algorithms/graph/breadth-first-search/index.ts)]
80-
- `A` [Bridges](/docs/Algorithms/Graph/Bridges)
80+
- `A` [Bridges](/docs/Algorithms/Graph/Bridges.mdx)
8181
[[Code](https://github.com/nejcm/js-algorithms/blob/master/src/algorithms/graph/bridges/index.ts)]
8282
- `B` [Depth first search](/docs/Algorithms/Graph/BFS&DFS)
8383
[[Code](https://github.com/nejcm/js-algorithms/blob/master/src/algorithms/graph/depth-first-search/index.ts)]
8484
- `A` [Detect cycle](/docs/Algorithms/Graph/DetectCycle)
8585
[[Code](https://github.com/nejcm/js-algorithms/blob/master/src/algorithms/graph/detect-cycle/index.ts)]
86-
- `A` [Dijkstra algorithm](/docs/Algorithms/Graph/Dijkstra)
86+
- `A` [Dijkstra algorithm](/docs/Algorithms/Graph/Dijkstra.mdx)
8787
[[Code](https://github.com/nejcm/js-algorithms/blob/master/src/algorithms/graph/dijkstra/index.ts)]
88-
- `A` [Floyd-Warshall algorithm](/docs/Algorithms/Graph/FloydWarshall)
88+
- `A` [Floyd-Warshall algorithm](/docs/Algorithms/Graph/FloydWarshall.mdx)
8989
[[Code](https://github.com/nejcm/js-algorithms/blob/master/src/algorithms/graph/floyd-warshall/index.ts)]
90-
- `A` [Hamiltonian cycle](/docs/Algorithms/Graph/HamiltonianCycle)
90+
- `A` [Hamiltonian cycle](/docs/Algorithms/Graph/HamiltonianCycle.mdx)
9191
[[Code](https://github.com/nejcm/js-algorithms/blob/master/src/algorithms/graph/hamiltonian-cycle/index.ts)]
9292
- `B` [Kruskal's algorithm](/docs/Algorithms/Graph/Kruskal)
9393
[[Code](https://github.com/nejcm/js-algorithms/blob/master/src/algorithms/graph/kruskal/index.ts)]
@@ -107,33 +107,33 @@ typically to solve a class of problems or to perform a computation. (Source: Wik
107107
- Branch & Bound
108108
[[Code](https://github.com/nejcm/js-algorithms/blob/master/src/algorithms/graph/travelling-salesman/branch&Bound.ts)]
109109

110-
- `A` [A* search algorithm](/docs/Algorithms/Graph/AStar)
110+
- `A` [A* search algorithm](/docs/Algorithms/Graph/AStar.mdx)
111111
[[Code](https://github.com/nejcm/js-algorithms/blob/master/src/algorithms/graph/a-star-search-algorithm/index.ts)]
112112

113113
**Math**
114114

115-
- `B` [Combinations](/docs/Algorithms/Math/Combinations)
115+
- `B` [Combinations](/docs/Algorithms/Math/Combinations.mdx)
116116
- With repetitions
117117
[[Code](https://github.com/nejcm/js-algorithms/blob/master/src/algorithms/math/combinations/withRepetitions.ts)]
118118
- Without repetitions
119119
[[Code](https://github.com/nejcm/js-algorithms/blob/master/src/algorithms/math/combinations/withoutRepetitions.ts)]
120-
- `B` [Permutations](/docs/Algorithms/Math/Permutations)
120+
- `B` [Permutations](/docs/Algorithms/Math/Permutations.mdx)
121121
- With repetitions
122122
[[Code](https://github.com/nejcm/js-algorithms/blob/master/src/algorithms/math/permutations/withRepetitions.ts)]
123123
- Without repetitions
124124
[[Code](https://github.com/nejcm/js-algorithms/blob/master/src/algorithms/math/permutations/withoutRepetitions.ts)]
125-
- `B` [Factorial](/docs/Algorithms/Math/Factorial)
125+
- `B` [Factorial](/docs/Algorithms/Math/Factorial.mdx)
126126
[[Code](https://github.com/nejcm/js-algorithms/blob/master/src/algorithms/math/factorial/index.ts)]
127127

128128
**Other**
129129

130-
- `A` [Knapsack problem](/docs/Algorithms/Other/KnapsackProblem)
130+
- `A` [Knapsack problem](/docs/Algorithms/Other/KnapsackProblem.mdx)
131131
[[Code](https://github.com/nejcm/js-algorithms/blob/master/src/algorithms/other/knapsack/index.ts)]
132-
- `B` [Hanoi tower](/docs/Algorithms/Other/HanoiTower)
132+
- `B` Hanoi tower
133133
[[Code](https://github.com/nejcm/js-algorithms/blob/master/src/algorithms/other/hanoi-tower/index.ts)]
134-
- `B` [Knight tour](/docs/Algorithms/Other/KnightTour)
134+
- `B` Knight tour
135135
[[Code](https://github.com/nejcm/js-algorithms/blob/master/src/algorithms/other/knight-tour/index.ts)]
136-
- `B` [N-queens](/docs/Algorithms/Other/NQueens)
136+
- `B`N-queens
137137
[[Code](https://github.com/nejcm/js-algorithms/blob/master/src/algorithms/other/n-queens/index.ts)]
138-
- `B` [Square matrix rotation](/docs/Algorithms/Other/SquareMatrixRotation)
138+
- `B` Square matrix rotation
139139
[[Code](https://github.com/nejcm/js-algorithms/blob/master/src/algorithms/other/square-matrix-rotation/index.ts)]

docs/data-structures/overview.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ that can be applied to the data. (Source: Wikipedia)
3636
[[Code](https://github.com/nejcm/js-algorithms/blob/master/src/data-structures/queue/index.ts)]
3737
- `B` [Stack](./stack)
3838
[[Code](https://github.com/nejcm/js-algorithms/blob/master/src/data-structures/stack/index.ts)]
39-
- `A` [Trees](./trees)
39+
- `A` [Trees](./tree)
4040
- `A` AVL tree
4141
[[Code](https://github.com/nejcm/js-algorithms/blob/master/src/data-structures/tree/avl-tree/index.ts)]
4242
- `A` Binary search tree

docs/installation.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ yarn start
2020

2121
## Contributing
2222

23-
Read [CONTRIBUTING.md](../CONTRIBUTING.md) for more info.
23+
Read CONTRIBUTING.md for more info.
2424

2525
> Submit a [Pull request](https://github.com/nejcm/js-algorithms/pulls) to include your algorithm.
2626

0 commit comments

Comments
 (0)