Bounded Queue

Home > Computer Science > Algorithms and data structures > Stacks and Queues > Bounded Queue

This type of queue has a maximum size, and elements cannot be added if the queue is full. It is useful when you need to limit the size of a collection.