A curated playground for learning algorithms — interactive visualizers, clear implementations (C++ / Python / Java), and a structured mind map for interview & contest prep.
- 🔗 Profile: https://github.com/codeAlgorithm
- 🌐 Live demo: https://codeAlgorithm.github.io
- 📚 Repos:
algorithms-visualized,ds-and-algos,interview-prep
- Interactive sorting & graph visualizers (play, pause, step).
- Algorithm mind map (Mermaid) for quick revision paths.
- Multi-language reference implementations with tests.
- Short, annotated solutions ideal for interviews and contests.
Paste this block into any GitHub README page — GitHub supports Mermaid diagrams.
flowchart LR
ALGO[Algorithms]
SORT[Sorting<br/>Quick • Merge • Heap • Radix]
GRAPH[Graphs<br/>BFS • DFS • Dijkstra • MST]
DP[Dynamic Programming<br/>Knapsack • LIS • Tree DP]
STR[Strings<br/>KMP • Rolling Hash • Suffix]
GREEDY[Greedy<br/>Interval • Huffman]
ALGO --> SORT
ALGO --> GRAPH
ALGO --> DP
ALGO --> STR
SORT --> GREEDY
GRAPH --> DP
