From charlesreid1

Revision as of 08:25, 30 May 2017 by Admin (talk | contribs)

Queue ADT (abstract data type):

  • an instance Q of a queue data type supports the following two methods:
  • Q.enqueue(e)
  • Q.dequeue()
  • Additional convenience methods:
  • Q.peek()
  • Q.is_empty()
  • len(Q)


Flags