Describe a queue data structure.

A queue is a FIFO (First In First Out) data structure.
Analogous to a production line, the first item in the list will be the first to be removed, the second the second and so on.

MT

Related Computing A Level answers

All answers ▸

Simplify the following Boolean expression: ¬(AvB) v ¬(CvD) v ¬A^(BvC) v (¬A^A)


What is the difference between a variable and an identifier?


Convert the hexadecimal '3E', which represents a 2's compliment binary number, in decimal.


How can I decide whether Quicksort or Mergesort is better for a given situation?