Skip to main content
G11 SUPER GIO
123
02
PRACTICE MISSIONalgorithms, data structures, and system behavior

algorithms, data structures, and system behavior

NEW CASENEW EVIDENCE

Choose a data structure

A clinic must process patients by urgency, then arrival time within equal urgency. Operations: add patient, update urgency, remove highest priority.

  1. Order is priority-based, not simple arrival order.
  2. Updates must be supported.
  3. A priority queue models removal rule.

Which structure is the best fit?

MODELAlgorithm Trace Deck
DATA
PROVEChoose with evidence
CLUE

Pause. Find what matters. Then make your move.