Docs
data-structures-and-algorithms
Queue

Queue

What is queue?

OperationBig-O Time
PushO(1)
PopO(1)
Peek / TopO(1)