Queue
- First In, First Out (FIFO)
#
Create a Queue:#
Adding items to the Queue:#
Size of the Queue:#
Deleting items from the Queue:- Deletes the item and returns the item.
#
Java Peek Equivalent.- Doesn't seem like there is one.
- Implementing Queue in an array is another approach.
#
Delete all items from the Queue#
Check if Queue is empty:#
Check:Sized Queue