Python · Visual · Interactive

Array

Click Step → to walk through each line of code and watch the structure evolve.

Python Code

        
Visualization
Press Step → to begin
Step 0 / 0

Linked List

See how Node records are chained with next pointers — step through append and delete operations.

Python Code

        
Visualization
Press Step → to begin
Step 0 / 0

Stack

LIFO — Last In, First Out. Step through push and pop operations.

Python Code

        
Visualization
Press Step → to begin
Step 0 / 0

Queue

FIFO — First In, First Out. Step through enqueue and dequeue operations.

Python Code

        
Visualization
Press Step → to begin
Step 0 / 0

Binary Tree

Array-based BT using index pointers — step through each insertion and watch the tree and array table update live.

Python Code

        
Visualization
Press Step → to begin
Step 0 / 0

Sorting

Compare Bubble Sort and Insertion Sort — watch elements get compared, swapped, and sorted step by step.

Python Code

        
Visualization
Press Step → to begin
Step 0 / 0