Skip to content

Commit d48c318

Browse files
committed
docs: List Linked List and Graph Traversal in About and README
Add a Data Structures section covering the Linked List and interactive Graph Traversal visualizers, refresh the README segment list, and note both additions in the timeline.
1 parent 01a17e5 commit d48c318

2 files changed

Lines changed: 19 additions & 3 deletions

File tree

README.md

Lines changed: 12 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,17 +10,20 @@ Visit : https://tamimehsan.github.io/AlgorithmVisualizer/
1010

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

13-
So far there are 6 segments
13+
So far there are these segments
1414
- Pathfinder
15+
- Graph Traversal (BFS / DFS)
1516
- Prime Numbers
1617
- Sorting Algorithms
1718
- N Queen
1819
- Convex Hull
1920
- Binary Search Game
2021
- Recursion Tree
2122
- Turing Machine
23+
- Game of Life
24+
- Linked List
2225

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

2528
## Algorithms implemented
2629

@@ -30,6 +33,11 @@ I have implemented a total of `24 algorithms` so far. And will try to add more l
3033
- Dijkstra
3134
- A star
3235
- Recursive Maze Creation
36+
- Data Structures
37+
- Linked List (insert, delete, search, reverse — singly & doubly)
38+
- Graph Traversal
39+
- BFS
40+
- DFS
3341
- Sorting
3442
- Bubble sort
3543
- Selection sort
@@ -48,7 +56,6 @@ I have implemented a total of `24 algorithms` so far. And will try to add more l
4856
- Derangement
4957
- Fast Exponentiation
5058
- Stirling Number of Second Kind
51-
5259
- Turing Machine
5360
- Bitwise NOT
5461
- Increment one
@@ -64,6 +71,8 @@ I am not sure if anyone would like to contribute to this project or not. But any
6471
- Commit 16: Added Flip Move animation to inplace sorting components
6572
- Commit 20: Added Tree Structure
6673
- 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)
74+
- Jun 2026: Added Linked List visualizer (singly & doubly) with staged insert/delete animations
75+
- Jun 2026: Added interactive Graph Traversal (BFS / DFS) built on React Flow
6776

6877
### Acknowledgement
6978

src/app/about/page.jsx

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,13 @@ const algorithms = [
99
category: "Graph Search",
1010
items: ["DFS", "BFS", "Dijkstra", "A*", "Recursive Maze Generation"],
1111
},
12+
{
13+
category: "Data Structures",
14+
items: [
15+
"Linked List — insert, delete, search, reverse (singly & doubly)",
16+
"Graph — interactive BFS / DFS traversal",
17+
],
18+
},
1219
{
1320
category: "Sorting",
1421
items: [

0 commit comments

Comments
 (0)