Interact with classic data structures. Run operations and watch the structure respond in real time.
A LIFO structure — push adds to the top, pop removes the top, peek inspects it. All O(1).
A FIFO structure — enqueue adds to the rear, dequeue removes from the front, peek inspects it. All O(1).