Queue in a linear data structure, which work as FIFO (First In First Out) order. In C++, queues are implemented as containers adapters, which are classes that use an encapsulated object of a specific container class as its underlying container, providing a specific set of member functions to access its elements.
Comments
Post a Comment