📚 Stack Data Structure

Last-In-First-Out (LIFO) - Last element added is the first to be removed

⚙️ Controls

📊 Visualization
↓ Top

📈 Statistics

Size: 0
Top Element:
Last Operation: None
Is Empty: Yes

🚶 Queue Data Structure

First-In-First-Out (FIFO) - First element added is the first to be removed

⚙️ Controls

📊 Visualization
🚪 Front
🔚 Rear

📈 Statistics

Size: 0
Front Element:
Rear Element:
Last Operation: None

🔗 Linked List Data Structure

Dynamic data structure with nodes containing data and pointers to next nodes

⚙️ Controls

📊 Visualization

📈 Statistics

Size: 0
Head Node:
Tail Node:
Last Operation: None