SlideShare a Scribd company logo
Data Structure and
Algorithm (CS 102)
Ashok K Turuk
Queue
• A queue is a linear list of elements in
which
– deletion can take place only at one end
called Front, and
– Insertion takes place at one end called
Rear

• Queues are also known as First-InFirst-Out (FIFO) list
Queue
• Queue are represented in two-ways
– Linear Array
– One-way Linked List
Array representation of Queue
• A queue is maintained by a
– linear array QUEUE
– Two pointer variable
• FRONT : Containing the location of the front
element of the queue
• REAR : Containing

• FRONT == NULL indicates that the
queue is empty
Queue
FRONT: 1
REAR: 4

AA BB CC DD
1
2
3
4
5

…
6

7

N

Delete an element
FRONT: 2
REAR: 4

1

BB CC DD
2
3
4
5

…
6

7

N

Whenever an element is deleted from the
queue, the value of FRONT is increased by 1
FRONT = FRONT + 1
Queue
FRONT: 2

REAR: 4

BB CC DD

1

2

3

4

…

5

6

7

N

Insert an element
FRONT: 2
REAR: 5

1

BB CC DD EE
2
3
4
5
6

…
7

Whenever an element is inserted into the
queue, the value of REAR is increased by 1
REAR = REAR + 1

N
Queue
• REAR = N and Insert an element into
queue
FRONT: 7
REAR: N

1

2

3

4

5

6

XX …
7

Move the entire queue to the beginning of the
array
Change the FRONT and REAR accordingly
Insert the element
This procedure is too expensive

ZZ
N
Queue
• Queue is assumed to be circular
• QUEUE[1] comes after QUEUE[N]
• Instead of increasing REAR to N +1, we
reset REAR = 1 and then assign
QUEUE[REAR] = ITEM
Queue
• FRONT = N and an element of QUEUE
is Deleted
FRONT: N
REAR:

1

2

3

4

5

6

XX …
7

We reset FRONT = 1, instead of increasing
FRONT to N + 1

ZZ
N
Queue
• QUEUE contain one element
FRONT = REAR NULL
FRONT: 7
REAR: 7

1

2

3

4

5

6

FRONT = NULL and REAR = NULL

XX …
7

N
Algorithm to Insert in Q
[1] If FRONT = 1 and REAR = N or if FRONT =
REAR + 1 then Print: Overflow and Exit
[2] If FRONT = NULL then
Set FRONT = 1 and REAR = 1
Else If REAR = N then
Set REAR = 1
Else
Set REAR = REAR + 1
[3] Set QUEUE[REAR] = ITEM
[4] Exit
Queue

FRONT: 7
REAR: 6

AA BB CC DD EE FF
1
2
3
4
5
6

FRONT = REAR + 1 [FULL QUEUE]

XX …
7

ZZ
N
Algorithm to Delete from Q
[1] If FRONT = NULL then Print: Underflow and
Exit
[2] Set ITEM = QUEUE[FRONT]
[3]

If FRONT = REAR then
Set FRONT = NULL and REAR = NULL
Else If FRONT = N then
Set FRONT = 1
Else
Set FRONT = FRONT + 1
[4] Exit
Linked List Representation of Queue
• A linked queue is a queue implemented
as linked list with two pointer variable
FRONT and REAR pointing to the nodes
which is in the FRONT and REAR of the
queue
Linked List Representation of
Queue
FRONT
CC

BB

AA X
REAR

15
Insertion in a Queue
FRONT
AA

BB
NEW

CC X
REAR
DD

16
Insertion in a Queue
FRONT
AA

BB

CC X
DD
REAR
17
Delete from a Queue
FRONT
CC

BB

AA X
REAR

18
Delete from a Queue

FRONT
BB

AA X
REAR

19
Linked Queue
• No need to check for overflow condition
during insertion
• No need to view it as circular for
efficient management of space
Insertion
[1] NEW -> INFO = ITEM
NEW -> LINK = NULL
[2] If (FRONT = NULL) then
FRONT = REAR = NULL
else
Set REAR -> LINK = NEW
REAR = NEW
[3] Exit
Deletion
[1] If (FRONT = NULL) then
Print: Overflow, and Exit
[2] FRONT = FRONT -> LINK
[3] Exit
Deque
• A deque is a linear list in which
elements can be added or removed at
either end but not in the middle

• Deque is implemented by a circular
array DEQUE with pointers LEFT and
RIGHT which points to the two end of
the deque
Deque
• LEFT = NULL indicate deque is empty
LEFT: 4
RIGHT: 7

LEFT: 4
RIGHT: 7

1

2

YY
1

3

ZZ
2
3

AA BB CC DD
4
5
6
7
8

4

5

6

WW XX
7
8
Variation of deque
• There are two variation of deque
[1] Input-restricted queue: Deque which
allows insertions at only one end of the list
but allows deletion at both ends of the list
[2] Output-restricted queue: Deque which
allows deletion at only one end of the list
but allows insertion at both ends of the
list
Deque
LEFT: 2
RIGHT: 4

1

A
2

C
3

D
4

5

6

F is added to the right
LEFT: 2
RIGHT: 5

1

A
2

C
3

D
4

F
5

6
Deque
LEFT: 2
RIGHT: 5

1

A
2

C
3

D
4

F
5

6

Two Letters on right is deleted
LEFT: 2
RIGHT: 3

1

A
2

C
3

4

5

6
Deque
LEFT: 2
RIGHT: 3

1

A
2

C
3

4

5

6

K, L and M are added to the Left
LEFT: 5
RIGHT: 3

K
1

A
2

C
3

4

M
5

L
6
Priority Queue
• A priority queue is a collection of elements
such that each elements has been assigned
a priority and such that the order in which
elements are deleted and processed comes
from the following rules:
[1] Elements of higher priority is processed
before any elements of lower priority
[2] Two elements with the same priority are
processed according to the order in which
they were added to the queue
Priority Queue
• There are different ways a priority
queue can be represented such as
[1] One-way List
[2] Multiple queue
One-Way List Representation of
a Priority Queue
[1] Each node in the list will contain three
items of information: an information
field INFO, a priority number PRN,
and a link number LINK
[2] A node X precedes a node Y in the list
(a) when X has higher priority than Y or
(b) when both have same priority but X
was added to the list before Y
Queue

Head
A1

B2

F2

D3

32
Insertion and Deletion
• Deletion : Delete the first node in the
list.
• Insertion: Find the location of Insertion
Add an ITEM with priority number N
[a] Traverse the list until finding a node X
whose priority exceeds N. Insert ITEM
in front of node X
[b] If no such node is found, insert ITEM
as the last element of the list
Array representation of Priority
Queue
• Separate queue for each level of
priority
• Each queue will appear in its own
circular array and must have its own
pair of pointers, FRONT and REAR
• If each queue is given the same amount
space then a 2D queue can be used
QUEUE

FRONT REAR
1
1
2
3
4
5

2
1
0
5
4

2
3
0
1
4

1
2
3
4
5

BB

2
AA
CC

3

4

5

DD

EE

DD

FF

GG
Deletion Algorithm [outline]
[1] Find the smallest K such that
FRONT[K] NULL
[2] Delete and process the front element
in row K of QUEUE
[3] Exit
Insertion Algorithm [outline]
[1] Insert ITEM as the rear element in
row M of QUEUE
[2] Exit

More Related Content

PPTX
Lecture 6 data structures and algorithms
PPTX
Binary Search Tree
PPTX
Lecture 4 data structures and algorithms
PPT
B trees in Data Structure
PPTX
DMBS Indexes.pptx
PPTX
Deque and its applications
PPT
Chapter 1( intro & overview)
Lecture 6 data structures and algorithms
Binary Search Tree
Lecture 4 data structures and algorithms
B trees in Data Structure
DMBS Indexes.pptx
Deque and its applications
Chapter 1( intro & overview)

What's hot (20)

PPTX
Lecture 3 data structures and algorithms
PPTX
Presentation on queue
PPTX
Lecture 8 data structures and algorithms
PPT
Database Normalization 1NF, 2NF, 3NF, BCNF, 4NF, 5NF
PPTX
My lectures circular queue
PPTX
Database Concept - Normalization (1NF, 2NF, 3NF)
PPSX
Data Structure (Tree)
PPT
Chapter 12 ds
PPTX
Binary Search Tree
PPTX
Binary Search Tree in Data Structure
PPTX
Searching and sorting
PPTX
B and B+ tree
PDF
DSA Lab Manual C Scheme.pdf
PPTX
PPTX
Queue - Data Structure - Notes
PPTX
sorting and its types
PDF
Recurrence relation solutions
PPTX
The Stack And Recursion
PPTX
Counting Sort
Lecture 3 data structures and algorithms
Presentation on queue
Lecture 8 data structures and algorithms
Database Normalization 1NF, 2NF, 3NF, BCNF, 4NF, 5NF
My lectures circular queue
Database Concept - Normalization (1NF, 2NF, 3NF)
Data Structure (Tree)
Chapter 12 ds
Binary Search Tree
Binary Search Tree in Data Structure
Searching and sorting
B and B+ tree
DSA Lab Manual C Scheme.pdf
Queue - Data Structure - Notes
sorting and its types
Recurrence relation solutions
The Stack And Recursion
Counting Sort
Ad

Similar to Lecture 7 data structures and algorithms (20)

PPTX
6.queue
PPT
Unit 2 linked list and queues
PPT
queue (1).ppt queue notes and ppt in Data Structures
PPTX
2.DS Array
PPTX
PPTX
Detalied information of queue
PPTX
Queue in Data Structure
PPT
linked list1.ppt linked list ppts and notes
PPTX
apllicationsof queffffffffffffffffffffffffffffue.pptx
PPTX
2. Array in Data Structure
PPTX
queue_final.pptx
PPT
PPTX
fdfdfdsfadsfsfdsfsffggfdgdgreddsfewdcedrdfe
DOCX
Stack q ll algo
PPTX
4.linked list(contd.)
PPTX
queue & its applications
PPTX
Bsc cs ii dfs u-2 linklist,stack,queue
PPT
linked list2.ppt linked list part 2 ppt
PPTX
Mca ii dfs u-3 linklist,stack,queue
6.queue
Unit 2 linked list and queues
queue (1).ppt queue notes and ppt in Data Structures
2.DS Array
Detalied information of queue
Queue in Data Structure
linked list1.ppt linked list ppts and notes
apllicationsof queffffffffffffffffffffffffffffue.pptx
2. Array in Data Structure
queue_final.pptx
fdfdfdsfadsfsfdsfsffggfdgdgreddsfewdcedrdfe
Stack q ll algo
4.linked list(contd.)
queue & its applications
Bsc cs ii dfs u-2 linklist,stack,queue
linked list2.ppt linked list part 2 ppt
Mca ii dfs u-3 linklist,stack,queue
Ad

More from Aakash deep Singhal (12)

PPTX
Subsidence in coal mines
PPTX
Lecture 15 data structures and algorithms
PPTX
Lecture 14 data structures and algorithms
PPTX
Lecture 13 data structures and algorithms
PPTX
Lecture 12 data structures and algorithms
PPTX
Lecture 11 data structures and algorithms
PPTX
Lecture 10 data structures and algorithms
PPTX
Lecture 9 data structures and algorithms
PPTX
Lecture 5 data structures and algorithms
PPTX
Lecture 2 data structures and algorithms
PPT
Lecture 1 data structures and algorithms
PPTX
Lecture 16 data structures and algorithms
Subsidence in coal mines
Lecture 15 data structures and algorithms
Lecture 14 data structures and algorithms
Lecture 13 data structures and algorithms
Lecture 12 data structures and algorithms
Lecture 11 data structures and algorithms
Lecture 10 data structures and algorithms
Lecture 9 data structures and algorithms
Lecture 5 data structures and algorithms
Lecture 2 data structures and algorithms
Lecture 1 data structures and algorithms
Lecture 16 data structures and algorithms

Recently uploaded (20)

PPTX
Cell Structure & Organelles in detailed.
PPTX
Institutional Correction lecture only . . .
PDF
Pre independence Education in Inndia.pdf
PDF
FourierSeries-QuestionsWithAnswers(Part-A).pdf
PDF
Basic Mud Logging Guide for educational purpose
PDF
Complications of Minimal Access Surgery at WLH
PDF
O7-L3 Supply Chain Operations - ICLT Program
PPTX
GDM (1) (1).pptx small presentation for students
PDF
VCE English Exam - Section C Student Revision Booklet
PDF
STATICS OF THE RIGID BODIES Hibbelers.pdf
PDF
O5-L3 Freight Transport Ops (International) V1.pdf
PPTX
Pharma ospi slides which help in ospi learning
PDF
grade 11-chemistry_fetena_net_5883.pdf teacher guide for all student
PDF
2.FourierTransform-ShortQuestionswithAnswers.pdf
PDF
ANTIBIOTICS.pptx.pdf………………… xxxxxxxxxxxxx
PDF
Saundersa Comprehensive Review for the NCLEX-RN Examination.pdf
PPTX
Microbial diseases, their pathogenesis and prophylaxis
PPTX
Cell Types and Its function , kingdom of life
PPTX
master seminar digital applications in india
PDF
Physiotherapy_for_Respiratory_and_Cardiac_Problems WEBBER.pdf
Cell Structure & Organelles in detailed.
Institutional Correction lecture only . . .
Pre independence Education in Inndia.pdf
FourierSeries-QuestionsWithAnswers(Part-A).pdf
Basic Mud Logging Guide for educational purpose
Complications of Minimal Access Surgery at WLH
O7-L3 Supply Chain Operations - ICLT Program
GDM (1) (1).pptx small presentation for students
VCE English Exam - Section C Student Revision Booklet
STATICS OF THE RIGID BODIES Hibbelers.pdf
O5-L3 Freight Transport Ops (International) V1.pdf
Pharma ospi slides which help in ospi learning
grade 11-chemistry_fetena_net_5883.pdf teacher guide for all student
2.FourierTransform-ShortQuestionswithAnswers.pdf
ANTIBIOTICS.pptx.pdf………………… xxxxxxxxxxxxx
Saundersa Comprehensive Review for the NCLEX-RN Examination.pdf
Microbial diseases, their pathogenesis and prophylaxis
Cell Types and Its function , kingdom of life
master seminar digital applications in india
Physiotherapy_for_Respiratory_and_Cardiac_Problems WEBBER.pdf

Lecture 7 data structures and algorithms

  • 1. Data Structure and Algorithm (CS 102) Ashok K Turuk
  • 2. Queue • A queue is a linear list of elements in which – deletion can take place only at one end called Front, and – Insertion takes place at one end called Rear • Queues are also known as First-InFirst-Out (FIFO) list
  • 3. Queue • Queue are represented in two-ways – Linear Array – One-way Linked List
  • 4. Array representation of Queue • A queue is maintained by a – linear array QUEUE – Two pointer variable • FRONT : Containing the location of the front element of the queue • REAR : Containing • FRONT == NULL indicates that the queue is empty
  • 5. Queue FRONT: 1 REAR: 4 AA BB CC DD 1 2 3 4 5 … 6 7 N Delete an element FRONT: 2 REAR: 4 1 BB CC DD 2 3 4 5 … 6 7 N Whenever an element is deleted from the queue, the value of FRONT is increased by 1 FRONT = FRONT + 1
  • 6. Queue FRONT: 2 REAR: 4 BB CC DD 1 2 3 4 … 5 6 7 N Insert an element FRONT: 2 REAR: 5 1 BB CC DD EE 2 3 4 5 6 … 7 Whenever an element is inserted into the queue, the value of REAR is increased by 1 REAR = REAR + 1 N
  • 7. Queue • REAR = N and Insert an element into queue FRONT: 7 REAR: N 1 2 3 4 5 6 XX … 7 Move the entire queue to the beginning of the array Change the FRONT and REAR accordingly Insert the element This procedure is too expensive ZZ N
  • 8. Queue • Queue is assumed to be circular • QUEUE[1] comes after QUEUE[N] • Instead of increasing REAR to N +1, we reset REAR = 1 and then assign QUEUE[REAR] = ITEM
  • 9. Queue • FRONT = N and an element of QUEUE is Deleted FRONT: N REAR: 1 2 3 4 5 6 XX … 7 We reset FRONT = 1, instead of increasing FRONT to N + 1 ZZ N
  • 10. Queue • QUEUE contain one element FRONT = REAR NULL FRONT: 7 REAR: 7 1 2 3 4 5 6 FRONT = NULL and REAR = NULL XX … 7 N
  • 11. Algorithm to Insert in Q [1] If FRONT = 1 and REAR = N or if FRONT = REAR + 1 then Print: Overflow and Exit [2] If FRONT = NULL then Set FRONT = 1 and REAR = 1 Else If REAR = N then Set REAR = 1 Else Set REAR = REAR + 1 [3] Set QUEUE[REAR] = ITEM [4] Exit
  • 12. Queue FRONT: 7 REAR: 6 AA BB CC DD EE FF 1 2 3 4 5 6 FRONT = REAR + 1 [FULL QUEUE] XX … 7 ZZ N
  • 13. Algorithm to Delete from Q [1] If FRONT = NULL then Print: Underflow and Exit [2] Set ITEM = QUEUE[FRONT] [3] If FRONT = REAR then Set FRONT = NULL and REAR = NULL Else If FRONT = N then Set FRONT = 1 Else Set FRONT = FRONT + 1 [4] Exit
  • 14. Linked List Representation of Queue • A linked queue is a queue implemented as linked list with two pointer variable FRONT and REAR pointing to the nodes which is in the FRONT and REAR of the queue
  • 15. Linked List Representation of Queue FRONT CC BB AA X REAR 15
  • 16. Insertion in a Queue FRONT AA BB NEW CC X REAR DD 16
  • 17. Insertion in a Queue FRONT AA BB CC X DD REAR 17
  • 18. Delete from a Queue FRONT CC BB AA X REAR 18
  • 19. Delete from a Queue FRONT BB AA X REAR 19
  • 20. Linked Queue • No need to check for overflow condition during insertion • No need to view it as circular for efficient management of space
  • 21. Insertion [1] NEW -> INFO = ITEM NEW -> LINK = NULL [2] If (FRONT = NULL) then FRONT = REAR = NULL else Set REAR -> LINK = NEW REAR = NEW [3] Exit
  • 22. Deletion [1] If (FRONT = NULL) then Print: Overflow, and Exit [2] FRONT = FRONT -> LINK [3] Exit
  • 23. Deque • A deque is a linear list in which elements can be added or removed at either end but not in the middle • Deque is implemented by a circular array DEQUE with pointers LEFT and RIGHT which points to the two end of the deque
  • 24. Deque • LEFT = NULL indicate deque is empty LEFT: 4 RIGHT: 7 LEFT: 4 RIGHT: 7 1 2 YY 1 3 ZZ 2 3 AA BB CC DD 4 5 6 7 8 4 5 6 WW XX 7 8
  • 25. Variation of deque • There are two variation of deque [1] Input-restricted queue: Deque which allows insertions at only one end of the list but allows deletion at both ends of the list [2] Output-restricted queue: Deque which allows deletion at only one end of the list but allows insertion at both ends of the list
  • 26. Deque LEFT: 2 RIGHT: 4 1 A 2 C 3 D 4 5 6 F is added to the right LEFT: 2 RIGHT: 5 1 A 2 C 3 D 4 F 5 6
  • 27. Deque LEFT: 2 RIGHT: 5 1 A 2 C 3 D 4 F 5 6 Two Letters on right is deleted LEFT: 2 RIGHT: 3 1 A 2 C 3 4 5 6
  • 28. Deque LEFT: 2 RIGHT: 3 1 A 2 C 3 4 5 6 K, L and M are added to the Left LEFT: 5 RIGHT: 3 K 1 A 2 C 3 4 M 5 L 6
  • 29. Priority Queue • A priority queue is a collection of elements such that each elements has been assigned a priority and such that the order in which elements are deleted and processed comes from the following rules: [1] Elements of higher priority is processed before any elements of lower priority [2] Two elements with the same priority are processed according to the order in which they were added to the queue
  • 30. Priority Queue • There are different ways a priority queue can be represented such as [1] One-way List [2] Multiple queue
  • 31. One-Way List Representation of a Priority Queue [1] Each node in the list will contain three items of information: an information field INFO, a priority number PRN, and a link number LINK [2] A node X precedes a node Y in the list (a) when X has higher priority than Y or (b) when both have same priority but X was added to the list before Y
  • 33. Insertion and Deletion • Deletion : Delete the first node in the list. • Insertion: Find the location of Insertion Add an ITEM with priority number N [a] Traverse the list until finding a node X whose priority exceeds N. Insert ITEM in front of node X [b] If no such node is found, insert ITEM as the last element of the list
  • 34. Array representation of Priority Queue • Separate queue for each level of priority • Each queue will appear in its own circular array and must have its own pair of pointers, FRONT and REAR • If each queue is given the same amount space then a 2D queue can be used
  • 36. Deletion Algorithm [outline] [1] Find the smallest K such that FRONT[K] NULL [2] Delete and process the front element in row K of QUEUE [3] Exit
  • 37. Insertion Algorithm [outline] [1] Insert ITEM as the rear element in row M of QUEUE [2] Exit