Visualize & Master
Algorithms & Data Structures
Explore classic & modern sorting algorithms, efficient searching techniques, and interactive data structure visualizations — all with real-time step-by-step animation, comparisons, swaps, and Big-O metrics.
Data Structure Visualizers
Explore fundamental data structures with interactive step-by-step visualization, real-time operation tracking, and detailed explanations.
Linked List
Insert, delete, search, reverse, and cycle detection with node-pointer visualization.
→ Abrir estudioStack & Queue
Push, pop, peek, enqueue, dequeue operations with LIFO/FIFO visualization.
→ Abrir estudioHash Table
Chaining and linear probing strategies with collision handling visualization.
→ Abrir estudioBinary Tree
Inorder, preorder, postorder, and level-order traversals with tree visualization.
→ Abrir estudioBinary Search Tree
Insert, search, delete, find min/max with BST property and pointer traversal.
→ Abrir estudioHeap
Insert, extract max/min, build heap with array bar and tree overlay.
→ Abrir estudioGraph Representation
Adjacency lists and matrices with directed/undirected and weighted variants.
→ Abrir estudioGraph Traversal
BFS and DFS traversals with visited tracking, queue/stack snapshots, and order output.
→ Abrir estudioShortest Path
Dijkstra and Bellman-Ford with distance tables, edge relaxation, and path reconstruction.
→ Abrir estudioMinimum Spanning Tree
Prim's and Kruskal's algorithms with edge selection, union tracking, and MST cost.
→ Abrir estudioUnion-Find (DSU)
Find, union by rank, and path compression with near-constant O(α(n)) operations.
→ Abrir estudioSegment Tree
Build, range queries, and point updates with segment coverage visualization.
→ Abrir estudioAVL Tree
Insert and search with balance-factor tracking and single/double rotations.
→ Abrir estudioRed-Black Tree
Insert and search with red/black recoloring and rotation-based fix-ups.
→ Abrir estudioTrie
Insert words, search, and prefix queries on a shared-prefix character tree.
→ Abrir estudioB-Tree
Insert and search with node splitting on an order-4 multi-key tree.
→ Abrir estudioFenwick Tree
Build, prefix sums, and range queries with the lowbit trick in O(log n).
→ Abrir estudioSparse Table
Precompute power-of-two intervals for O(1) range minimum queries.
→ Abrir estudioLCA
Lowest Common Ancestor queries with binary lifting on a rooted tree.
→ Abrir estudioNetwork Flow
Edmonds-Karp max flow with augmenting paths and bottleneck highlighting.
→ Abrir estudioA* Search
Optimal grid pathfinding with open/closed sets and the f = g + h heuristic.
→ Abrir estudio