> For the complete documentation index, see [llms.txt](https://interviews.woojiahao.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://interviews.woojiahao.com/data-structures/queues/double-ended-queues.md).

# 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)
