Skip to content

Latest commit

 

History

History
8 lines (6 loc) · 262 Bytes

double-ended-queues.md

File metadata and controls

8 lines (6 loc) · 262 Bytes

Double Ended Queues

For most double ended queue problems, focus on the following questions to determine how to best use the double ended queue:

  • When to push left
  • When to push right
  • When to pop left (more important)
  • When to pop right (more important)