WarriorDevKev / Queues

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Queues

implemented a queue data structure in JavaScript by creating a Queue class that:

• follows FIFO protocol with .enqueue() and .dequeue() methods

• gives the option of creating bounded queues with a .maxSize property

• prevents queue overflow and underflow by keeping track of the queue size

About


Languages

Language:JavaScript 100.0%