Deque

From NovaOrdis Knowledge Base
Revision as of 20:58, 11 August 2018 by Ovidiu (talk | contribs) (→‎Internal)
Jump to navigation Jump to search

External

Internal

Overview

A deque is a dynamic set that generalizes the concept of queue. The elements can be enqueued and dequeued both from the head and the tail of the deque. The INSERT and DELETE operations have each two versions:

  • insert to head or push.
  • delete from head or pop.
  • insert to tail or inject.
  • delete from tail or eject.