Skip to content

Commit 96d3d3e

Browse files
committed
docs: List Binary Search Tree in About and README
1 parent d130ec5 commit 96d3d3e

2 files changed

Lines changed: 10 additions & 0 deletions

File tree

README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ So far there are these segments
2222
- N Queen
2323
- Convex Hull
2424
- Binary Search Game
25+
- Binary Search Tree
2526
- Recursion Tree
2627
- Turing Machine
2728
- Game of Life
@@ -39,6 +40,8 @@ I have implemented a total of `30+ algorithms` so far. And will try to add more
3940
- Recursive Maze Creation
4041
- Data Structures
4142
- Linked List (insert, delete, search, reverse — singly & doubly)
43+
- Trees
44+
- Binary Search Tree (insert, delete, search with animated re-layout)
4245
- Graph Traversal
4346
- BFS
4447
- DFS
@@ -94,6 +97,7 @@ I am not sure if anyone would like to contribute to this project or not. But any
9497
- Jun 2026: Added interactive Graph Traversal (BFS / DFS) built on React Flow
9598
- Jun 2026: Added Shortest Path (Dijkstra / Bellman-Ford) and Minimum Spanning Tree (Kruskal / Prim) on a shared, reusable graph workspace
9699
- Jun 2026: Added Connectivity (components / SCC / WCC) and Network Flow (Edmonds-Karp / Ford-Fulkerson, max flow / min cut)
100+
- Jun 2026: Added a reusable SVG tree component with a Binary Search Tree visualizer, and migrated the Recursion Tree onto it
97101

98102
### Acknowledgement
99103

src/app/about/page.jsx

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,12 @@ const algorithms = [
1515
"Linked List — insert, delete, search, reverse (singly & doubly)",
1616
],
1717
},
18+
{
19+
category: "Trees",
20+
items: [
21+
"Binary Search Tree — insert, delete, search with animated re-layout",
22+
],
23+
},
1824
{
1925
category: "Interactive Graphs",
2026
items: [

0 commit comments

Comments
 (0)