Algorithms-Data-Structures repo is a practical playground for Algorithms & Data Structures.
Not just theory – we implement + visualize how things actually work.
sorting/→ Sorting algorithms + visualizationspathfinding/→ Graph search in grids (BFS, DFS, Dijkstra, A*)trees/→ Binary Trees, BST, AVL, Heaps + traversal demosgraphs/→ Graph representations & algorithms (MST, Topological Sort, etc.)utils/→ Helpers (visualization, data generators, timers)
git clone https://github.com/yourname/AlgoLab.git
cd AlgoLab
pip install -r requirements.txtEach algorithm can be run standalone to see it in action:
python pathfinding/a_star.py
python sorting/merge_sort.py