Queue Visualizer
Queue is empty
FrontRear
Queue is empty!
Queue Operations:
- EnqueueAdd to rear (O(1) operation)
- DequeueRemove from front (O(1) operation)
- IsEmptyCheck if queue has no elements (O(1) operation)
- Queue follows FIFO (First In First Out) principle