Skip to content

Commit 4c67a02

Browse files
committed
docs: List Shortest Path and MST in About and README
Add the Shortest Path (Dijkstra / Bellman-Ford) and Minimum Spanning Tree (Kruskal / Prim) visualizers to the segment lists and algorithm breakdown; group the interactive graph visualizers in the About page.
1 parent 31eb52d commit 4c67a02

2 files changed

Lines changed: 22 additions & 5 deletions

File tree

README.md

Lines changed: 14 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,13 @@ Visit : https://tamimehsan.github.io/AlgorithmVisualizer/
88

99
![Visitor Count](https://visitor-badge.laobi.icu/badge?page_id=TamimEhsan.AlgorithmVisualizer)
1010

11-
Explore more than 24 algorithms with step by step visualization simplifying the learning process and making it more engaging for a better understanding.
11+
Explore more than 30 algorithms with step by step visualization simplifying the learning process and making it more engaging for a better understanding.
1212

1313
So far there are these segments
1414
- Pathfinder
1515
- Graph Traversal (BFS / DFS)
16+
- Shortest Path
17+
- Minimum Spanning Tree
1618
- Prime Numbers
1719
- Sorting Algorithms
1820
- N Queen
@@ -23,7 +25,7 @@ So far there are these segments
2325
- Game of Life
2426
- Linked List
2527

26-
I have implemented a total of `24+ algorithms` so far. And will try to add more later.
28+
I have implemented a total of `30+ algorithms` so far. And will try to add more later.
2729

2830
## Algorithms implemented
2931

@@ -38,15 +40,22 @@ I have implemented a total of `24+ algorithms` so far. And will try to add more
3840
- Graph Traversal
3941
- BFS
4042
- DFS
43+
- Single Source Shortest Path
44+
- Dijkstra
45+
- Bellman-Ford
46+
- Minimum Spanning Tree
47+
- Kruskal
48+
- Prim
4149
- Sorting
4250
- Bubble sort
4351
- Selection sort
4452
- Insertion sort
4553
- Heap sort
4654
- Merge sort
4755
- Quick sort
48-
- Sieve of Eratosthenes
49-
- Archimedes Spiral
56+
- Prime Numbers
57+
- Sieve or Eratosthenes
58+
- Archimedes Spiral
5059
- N Queen Backtracking
5160
- Graham Scan for Convex Hull
5261
- Binary Search
@@ -73,6 +82,7 @@ I am not sure if anyone would like to contribute to this project or not. But any
7382
- 13 Dec 2024: Release v2.0.0: Migrate the project from legacy project to next js with shadcn ui [#3](https://github.com/TamimEhsan/AlgorithmVisualizer/pull/3)
7483
- Jun 2026: Added Linked List visualizer (singly & doubly) with staged insert/delete animations
7584
- Jun 2026: Added interactive Graph Traversal (BFS / DFS) built on React Flow
85+
- Jun 2026: Added Shortest Path (Dijkstra / Bellman-Ford) and Minimum Spanning Tree (Kruskal / Prim) on a shared, reusable graph workspace
7686

7787
### Acknowledgement
7888

src/app/about/page.jsx

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,14 @@ const algorithms = [
1313
category: "Data Structures",
1414
items: [
1515
"Linked List — insert, delete, search, reverse (singly & doubly)",
16-
"Graph — interactive BFS / DFS traversal",
16+
],
17+
},
18+
{
19+
category: "Interactive Graphs",
20+
items: [
21+
"Graph Traversal — BFS / DFS",
22+
"Shortest Path — Dijkstra & Bellman-Ford (with negative-cycle detection)",
23+
"Minimum Spanning Tree — Kruskal & Prim",
1724
],
1825
},
1926
{

0 commit comments

Comments
 (0)