Difference between revisions of "Queues"
ThomasWard (talk | contribs) (Created page with "A queue is a linear list with a first-in first-out structure.There are three different types of queue circular queues, linear queues and priority queues.") |
|||
Line 1: | Line 1: | ||
A queue is a linear list with a first-in first-out structure.There are three different types of queue circular queues, linear queues and priority queues. | A queue is a linear list with a first-in first-out structure.There are three different types of queue circular queues, linear queues and priority queues. | ||
+ | |||
+ | ==Add to Queue== | ||
+ | ==Take from Queue== | ||
+ | ==Test for empty== | ||
+ | ==Test for full== |
Revision as of 08:50, 16 May 2017
A queue is a linear list with a first-in first-out structure.There are three different types of queue circular queues, linear queues and priority queues.