AP CSA

Stack & Queue

BEGINNERLO: 10.C.10 views

DESCRIPTION

Side-by-side interactive Stack (LIFO) and Queue (FIFO) visualization. Push/pop operations on a vertical stack with top pointer. Enqueue/dequeue on a horizontal queue with front/back pointers. Peek highlights without removal. Color-coded operations (green=add, red=remove, yellow=peek). All operations O(1). Operation log tracks history.

AP EXAM RELEVANCE
  • stack
  • queue
  • LIFO
  • FIFO
  • data structure
  • push
  • pop
  • enqueue
  • dequeue
  • AP CSA