Tag: queue in data structure

Double Ended Queue
 0 Comment on Know the concept of Double Ended Queue in Data Structure
Posted in Data Structure

Know the concept of Double Ended Queue in Data Structure

Deque, double ended queue is an abstract data type in which elements can be added or removed either from front or back. Generally Front is considered as head end and Back is considered as Tail end.

 0 Comment on know about Priority Queue in Data Structure
Posted in Data Structure

know about Priority Queue in Data Structure

Priority Queue is similar to queue data structure, but in this when we insert an element means when we enqueue an element we also enqueue an additional piece of information, namely priority.

 0 Comment on Know the Concept of Circular Queue in Data Structure
Posted in Data Structure

Know the Concept of Circular Queue in Data Structure

Circular queue is modified version of Queue data structure, that adheres FIFO principle. It has fixed memory size, due to which it permits better memory utilization compare to simple queue.

 0 Comment on Do you Know the Concept of Queue in Data Structure
Posted in Data Structure

Do you Know the Concept of Queue in Data Structure

Queue in Data Structure is a list in which elements have a linear data structure where items get inserted from one end and deleted from another end. Insertion end is considered as rear and deletion end is considered as front end of queue.