DS Unit-2 Queue
DS Unit-2 Queue
GTU # 3130702
Unit-2
Linear Data
Structure
(Queue)
Queue
A linear list which permits deletion to be performed at one end of the list
and insertion at the other end is called queue.
The information in such a list is processed FIFO (first in first out) or
FCFS (first come first served) manner.
Front is the end of queue from that deletion is to be performed.
Rear is the end of queue at which new element is to be inserted.
Insertion operation is called Enqueue & deletion operation is called
Dequeue. 10 8 5 80 50
10
0
Deleti Inserti
on on
Fron Rea
t r
Applications of Queue
Queue of people at any service point such as ticketing etc.
Queue of air planes waiting for landing instructions.
Queue of processes in OS.
Queue is also used by Operating systems for Job Scheduling.
When a resource is shared among multiple consumers. E.g., in case of
printers the first one to be entered is the first to be processed.
When data is transferred asynchronously (data not necessarily
received at same rate as sent) between two processes. Examples include
IO Buffers, pipes, file IO, etc.
Queue is used in BFS (Breadth First Search) algorithm. It helps in
traversing a tree or graph.
Queue is used in networking to handle congestion.
Procedure: Enqueue (Q, F, R, N,Y)
This procedure inserts Y at rear end of Queue. R
FR F R FR
FR F R F R
FR F R FR
FR F R F R
FR F R
DQueue
A DQueue (double ended queue) is a linear list in which insertion and
deletion are performed from the either end of the structure.
There are two variations of Dqueue
Input restricted dqueue – allows insertion at only one end
Output restricted dqueue – allows deletion from only one end
Inserti Deleti
on
Deleti Inserti
on
Dqueue Algorithms on on
Fro Re
DQINSERT_REAR is same as QINSERT (Enqueue)
nt ar
DQDELETE_FRONT is same as QDELETE (Dequeue)
DQINSERT_FRONT
DQDELETE_REAR
Procedure: DQINSERT_FRONT (Q,F,R,N,Y)
This procedure inserts Y at front end of the Circular Queue.
Queue is represented by a vector Q containing N elements.
F is pointer to the front element of a queue.
R is pointer to the rear element of a queue.
1. [Overflow?]
F R
If F = 0
Then Write(‘Empty’)
Return Overfl
10 89 7
If F = 1 ow
Then Write(‘Overflow’)
Return F R
2. [Decrement front
Pointer]
F F - 1 5 10 89 7
3. [Insert Element?] 0
Q[F] Y
Return
Function: DQDELETE_REAR(Q,F,R)
This function deletes & returns an element from rear end of the Queue.
Queue is represented by a vector Q containing N elements.
F is pointer to the front element of a queue.
R is pointer to the rear element of a queue.
1. [Underflow?] FR
If R = 0
Then Write(‘Underflow’)
Return(0) 7
2. [Delete Element]
Y Q[R]
F R
3. [Queue Empty?]
IF R = F
Then R F 0
10 89 7
Else R R – 1
4. [Return Element]
Return(Y)
Priority Queue
A queue in which we are able to insert & remove items from any
position based on some property (such as priority of the task to be
processed) is often referred as priority queue.
Below fig. represent a priority queue of jobs waiting to use a computer.
Priorities are attached with each Job
Priority 1 indicates Real Time Job
Priority 2 indicates Online Job
Priority 3 indicates Batch Processing Job
Ri Oj Bk
Priority Queue viewed as a single queue with insertion allowed at any position
Priority - 1 R1 R2 … Ri-1 Ri
Priority - 2 O1 O2 … Oj-1 Oj
Priority - 3 B1 B2 … Bk-1 Bk
Thank
You