javascript-spec / buildout-loud-hacktober

Learn DSA this October with Hacktoberfest 2022
1 stars 9 forks source link

Create Queue.cpp #13

Closed cuteipie closed 1 year ago

cuteipie commented 1 year ago

Queues are a type of container adaptors that operate in a first in first out (FIFO) type of arrangement. Elements are inserted at the back (end) and are deleted from the front. Queues use an encapsulated object of deque or list (sequential container class) as its underlying container, providing a specific set of member functions to access its elements.