John Mavrick's Garden

Search IconIcon to open search

Last updated April 10, 2022

Status: Tags: #cards/cmpt225/dataStructures Links: Abstract Data Type


Queue

Queue ?

Check if empty ;; if front == back

Check if full ;; if back pos = elemCount

enqueue() elems[back++] = 10 back = back % capacity;

Circular, if it goes above size then it goes back to 0

Use Cases

Big O Notation


Backlinks

1
list from Queue AND !outgoing(Queue)

References:

Created:: 2021-10-27 14:56


Interactive Graph