Bounded Queue
Package:
Summary:
Manage queue with a limited number of elements
Groups:
Author:
Description:
This class can be used to manage queue with a limited number of elements.
It can push and pop item values of any type into a queue array.
If the queue already contains the limit number of items when a new item is pushed, the item at the bottom of the queue is popped out.
It can push and pop item values of any type into a queue array.
If the queue already contains the limit number of items when a new item is pushed, the item at the bottom of the queue is popped out.
Comments are closed.