Circular queue :
In a queue if the array elements can be accessed in a circular fashion the queue is a circular queue.
Priority queue :
Often the items added to a queue have a priority associated with them: this priority determines the order in which they exit the queue - highest priority items are removed first. C ++ IMPLEMENTATION OF QUEUE USING CLASSES Test your skills |