SlideShare a Scribd company logo
2
Most read
3
Most read
4
Most read
deque And 
Its Applications 
B.Manoj - 13MX27 
M.Parthiban - 13MX32 
R.Sathasivam - 13MX41 
G.Sivanantham - 13MX45 
N.TamilArasan – 13MX49
What is deque ? 
 A double-ended queue is an abstract data type 
that generalizes a queue, for which elements can 
be added to or removed from either the front or 
rear. 
 It is also often called a head-tail linked list.
Types 
Input-restricted deque 
Deletion can be made from both ends , but 
Insertion can be made at one end only. 
Output-restricted deque 
Insertion can be made at both ends , but 
Deletion can be made from one end only.
Operations 
pushRear() - Insert element at back 
pushFront() - Insert element at front 
popRear() - Remove last element 
popFront() - Remove first element 
isEmpty() – Checks whether the queue 
is empty or not.
Example of deque Operation 
Operation deque Contents Return Value 
isEmpty() [] True 
pushFront(‘a’) [‘a’] 
pushFront(‘b’) [‘b’ , ‘a’] 
pushRear(‘c’) [‘b’ , ‘a’ , ‘c’] 
popFront() [‘a’ , ‘c’] ‘b’ 
isEmpty() [‘a’ , ‘c’] False 
popRear() [‘a’] ‘c’
deque Applications 
Palindrome Checker 
Madam, Radar, Malayalam are some examples 
for palindrome
deque Applications 
A-Steal job scheduling algorithm 
– The A-Steal algorithm implements task scheduling 
for several processors(multiprocessor scheduling). 
– The processor gets the first element from the deque. 
– When one of the processor completes execution of 
its own threads it can steal a thread from another 
processor. 
– It gets the last element from the deque of another 
processor and executes it.
deque Applications 
Undo - Redo operation in software applications
Any Query ?
Thank You

More Related Content

PPTX
Deque and its applications
Jsaddam Hussain
 
PPTX
stack & queue
manju rani
 
PPTX
Infix to postfix conversion
Then Murugeshwari
 
PPTX
Huffman's algorithm in Data Structure
Vrushali Dhanokar
 
PPTX
Queues
Ashim Lamichhane
 
PPT
Stack
srihariyenduri
 
Deque and its applications
Jsaddam Hussain
 
stack & queue
manju rani
 
Infix to postfix conversion
Then Murugeshwari
 
Huffman's algorithm in Data Structure
Vrushali Dhanokar
 

What's hot (20)

DOCX
Stack - Operations and Applications
Sagacious IT Solution
 
PPTX
single linked list
Sathasivam Rangasamy
 
PPTX
linked list in data structure
shameen khan
 
PPTX
Data Structures - Lecture 9 [Stack & Queue using Linked List]
Muhammad Hammad Waseem
 
PPT
stack presentation
Shivalik college of engineering
 
PDF
Python set
Mohammed Sikander
 
PPT
Infix to Postfix Conversion Using Stack
Soumen Santra
 
PPTX
Breadth First Search & Depth First Search
Kevin Jadiya
 
PPTX
Stacks IN DATA STRUCTURES
Sowmya Jyothi
 
PDF
Expression trees
Salman Vadsarya
 
PPT
Queue Data Structure
Lovely Professional University
 
PPTX
Stack and Queue
Apurbo Datta
 
PDF
COMPILER DESIGN- Syntax Directed Translation
Jyothishmathi Institute of Technology and Science Karimnagar
 
PPTX
Queue in Data Structure
Janki Shah
 
PPTX
Hashing Technique In Data Structures
SHAKOOR AB
 
PPT
Heaps
Hafiz Atif Amin
 
PPTX
Topological Sorting
ShahDhruv21
 
PPTX
Queue Implementation Using Array & Linked List
PTCL
 
PPTX
Application of Stack - Yadraj Meena
Dipayan Sarkar
 
Stack - Operations and Applications
Sagacious IT Solution
 
single linked list
Sathasivam Rangasamy
 
linked list in data structure
shameen khan
 
Data Structures - Lecture 9 [Stack & Queue using Linked List]
Muhammad Hammad Waseem
 
Python set
Mohammed Sikander
 
Infix to Postfix Conversion Using Stack
Soumen Santra
 
Breadth First Search & Depth First Search
Kevin Jadiya
 
Stacks IN DATA STRUCTURES
Sowmya Jyothi
 
Expression trees
Salman Vadsarya
 
Queue Data Structure
Lovely Professional University
 
Stack and Queue
Apurbo Datta
 
COMPILER DESIGN- Syntax Directed Translation
Jyothishmathi Institute of Technology and Science Karimnagar
 
Queue in Data Structure
Janki Shah
 
Hashing Technique In Data Structures
SHAKOOR AB
 
Topological Sorting
ShahDhruv21
 
Queue Implementation Using Array & Linked List
PTCL
 
Application of Stack - Yadraj Meena
Dipayan Sarkar
 
Ad

Viewers also liked (20)

PPTX
Applications of queues ii
Tech_MX
 
PPT
Queue data structure
anooppjoseph
 
PPT
Algorithm: priority queue
Tareq Hasan
 
PPT
Queue Data Structure
Zidny Nafan
 
PPTX
My lectures circular queue
Senthil Kumar
 
PPT
Priority queues
Yeela Mehroz
 
PPTX
Ppt presentation of queues
Buxoo Abdullah
 
PDF
Queue as data_structure
eShikshak
 
PPT
Stacks, Queues, Deques
A-Tech and Software Development
 
PPTX
Priority queue
Alvian yudha Prawira
 
PPT
Notes DATA STRUCTURE - queue
Farhanum Aziera
 
PPT
Stacks and queue
Amit Vats
 
PDF
SPOJ Problem: OLOLO
Joyjit Choudhury
 
PPTX
Data Structures - Lecture 3 [Arrays]
Muhammad Hammad Waseem
 
PDF
Queue
Zaid Shabbir
 
PDF
computer notes - Priority queue
ecomputernotes
 
PPT
Algo>Abstract data type
Ain-ul-Moiz Khawaja
 
PDF
Arrays
Shakila Mahjabin
 
PPT
Abstract data types
Luis Goldster
 
Applications of queues ii
Tech_MX
 
Queue data structure
anooppjoseph
 
Algorithm: priority queue
Tareq Hasan
 
Queue Data Structure
Zidny Nafan
 
My lectures circular queue
Senthil Kumar
 
Priority queues
Yeela Mehroz
 
Ppt presentation of queues
Buxoo Abdullah
 
Queue as data_structure
eShikshak
 
Stacks, Queues, Deques
A-Tech and Software Development
 
Priority queue
Alvian yudha Prawira
 
Notes DATA STRUCTURE - queue
Farhanum Aziera
 
Stacks and queue
Amit Vats
 
SPOJ Problem: OLOLO
Joyjit Choudhury
 
Data Structures - Lecture 3 [Arrays]
Muhammad Hammad Waseem
 
computer notes - Priority queue
ecomputernotes
 
Algo>Abstract data type
Ain-ul-Moiz Khawaja
 
Abstract data types
Luis Goldster
 
Ad

Similar to deque and it applications (20)

PPTX
Unit ii linear data structures
LavanyaJ28
 
PPTX
Deque and its applications
Tech_MX
 
PPTX
Queue
Abdur Rehman
 
PDF
Algorithm and Data Structure - Queue
AndiNurkholis1
 
PDF
Queues
maamir farooq
 
PPTX
QUEUE PPT BY KULJIT SINGH.pptx
TajBir4
 
PPTX
QUEUE in data-structure (classification, working procedure, Applications)
Mehedi Hasan
 
PPTX
Data structures
naveeth babu
 
PDF
Stacks-and-Queues.pdf
TobyWtf
 
PPTX
Queue and its operations
V.V.Vanniaperumal College for Women
 
PDF
Double ended queue
jyoti_lakhani
 
PPTX
Basic Queue Operation in DataStructure.pptx
LakshmiSamivel
 
PPTX
DS ppt1.pptx.c programing. Engineering. Data structure
dibyajyotijena05
 
PPTX
Data structure , stack , queue
Rajkiran Nadar
 
PPTX
Stack and queue
CHANDAN KUMAR
 
PPT
Queue
Muhammad Farhan
 
PPTX
queue.pptx
Dr.Shweta
 
PPTX
deque.pptx
SoumenRout3
 
PPT
Lecture three of datat structures ,.The Queue-ds.ppt
donemoremaregere376
 
PDF
UNIT II LINEAR DATA STRUCTURES – STACKS, QUEUES
Kathirvel Ayyaswamy
 
Unit ii linear data structures
LavanyaJ28
 
Deque and its applications
Tech_MX
 
Algorithm and Data Structure - Queue
AndiNurkholis1
 
QUEUE PPT BY KULJIT SINGH.pptx
TajBir4
 
QUEUE in data-structure (classification, working procedure, Applications)
Mehedi Hasan
 
Data structures
naveeth babu
 
Stacks-and-Queues.pdf
TobyWtf
 
Queue and its operations
V.V.Vanniaperumal College for Women
 
Double ended queue
jyoti_lakhani
 
Basic Queue Operation in DataStructure.pptx
LakshmiSamivel
 
DS ppt1.pptx.c programing. Engineering. Data structure
dibyajyotijena05
 
Data structure , stack , queue
Rajkiran Nadar
 
Stack and queue
CHANDAN KUMAR
 
queue.pptx
Dr.Shweta
 
deque.pptx
SoumenRout3
 
Lecture three of datat structures ,.The Queue-ds.ppt
donemoremaregere376
 
UNIT II LINEAR DATA STRUCTURES – STACKS, QUEUES
Kathirvel Ayyaswamy
 

Recently uploaded (20)

PDF
1.Natural-Resources-and-Their-Use.ppt pdf /8th class social science Exploring...
Sandeep Swamy
 
PPTX
Strengthening open access through collaboration: building connections with OP...
Jisc
 
PPTX
Information Texts_Infographic on Forgetting Curve.pptx
Tata Sevilla
 
PDF
The Picture of Dorian Gray summary and depiction
opaliyahemel
 
PPTX
TEF & EA Bsc Nursing 5th sem.....BBBpptx
AneetaSharma15
 
PPTX
Understanding operators in c language.pptx
auteharshil95
 
PDF
The Final Stretch: How to Release a Game and Not Die in the Process.
Marta Fijak
 
PDF
Introducing Procurement and Supply L2M1.pdf
labyankof
 
PPTX
Presentation on Janskhiya sthirata kosh.
Ms Usha Vadhel
 
PPTX
An introduction to Dialogue writing.pptx
drsiddhantnagine
 
PPTX
Tips Management in Odoo 18 POS - Odoo Slides
Celine George
 
PDF
Module 3: Health Systems Tutorial Slides S2 2025
Jonathan Hallett
 
PDF
Electricity-Magnetic-and-Heating-Effects 4th Chapter/8th-science-curiosity.pd...
Sandeep Swamy
 
PPTX
Software Engineering BSC DS UNIT 1 .pptx
Dr. Pallawi Bulakh
 
PPTX
How to Manage Global Discount in Odoo 18 POS
Celine George
 
PDF
Types of Literary Text: Poetry and Prose
kaelandreabibit
 
PPTX
IMMUNIZATION PROGRAMME pptx
AneetaSharma15
 
PPTX
NOI Hackathon - Summer Edition - GreenThumber.pptx
MartinaBurlando1
 
PDF
Landforms and landscapes data surprise preview
jpinnuck
 
PPTX
Week 4 Term 3 Study Techniques revisited.pptx
mansk2
 
1.Natural-Resources-and-Their-Use.ppt pdf /8th class social science Exploring...
Sandeep Swamy
 
Strengthening open access through collaboration: building connections with OP...
Jisc
 
Information Texts_Infographic on Forgetting Curve.pptx
Tata Sevilla
 
The Picture of Dorian Gray summary and depiction
opaliyahemel
 
TEF & EA Bsc Nursing 5th sem.....BBBpptx
AneetaSharma15
 
Understanding operators in c language.pptx
auteharshil95
 
The Final Stretch: How to Release a Game and Not Die in the Process.
Marta Fijak
 
Introducing Procurement and Supply L2M1.pdf
labyankof
 
Presentation on Janskhiya sthirata kosh.
Ms Usha Vadhel
 
An introduction to Dialogue writing.pptx
drsiddhantnagine
 
Tips Management in Odoo 18 POS - Odoo Slides
Celine George
 
Module 3: Health Systems Tutorial Slides S2 2025
Jonathan Hallett
 
Electricity-Magnetic-and-Heating-Effects 4th Chapter/8th-science-curiosity.pd...
Sandeep Swamy
 
Software Engineering BSC DS UNIT 1 .pptx
Dr. Pallawi Bulakh
 
How to Manage Global Discount in Odoo 18 POS
Celine George
 
Types of Literary Text: Poetry and Prose
kaelandreabibit
 
IMMUNIZATION PROGRAMME pptx
AneetaSharma15
 
NOI Hackathon - Summer Edition - GreenThumber.pptx
MartinaBurlando1
 
Landforms and landscapes data surprise preview
jpinnuck
 
Week 4 Term 3 Study Techniques revisited.pptx
mansk2
 

deque and it applications

  • 1. deque And Its Applications B.Manoj - 13MX27 M.Parthiban - 13MX32 R.Sathasivam - 13MX41 G.Sivanantham - 13MX45 N.TamilArasan – 13MX49
  • 2. What is deque ?  A double-ended queue is an abstract data type that generalizes a queue, for which elements can be added to or removed from either the front or rear.  It is also often called a head-tail linked list.
  • 3. Types Input-restricted deque Deletion can be made from both ends , but Insertion can be made at one end only. Output-restricted deque Insertion can be made at both ends , but Deletion can be made from one end only.
  • 4. Operations pushRear() - Insert element at back pushFront() - Insert element at front popRear() - Remove last element popFront() - Remove first element isEmpty() – Checks whether the queue is empty or not.
  • 5. Example of deque Operation Operation deque Contents Return Value isEmpty() [] True pushFront(‘a’) [‘a’] pushFront(‘b’) [‘b’ , ‘a’] pushRear(‘c’) [‘b’ , ‘a’ , ‘c’] popFront() [‘a’ , ‘c’] ‘b’ isEmpty() [‘a’ , ‘c’] False popRear() [‘a’] ‘c’
  • 6. deque Applications Palindrome Checker Madam, Radar, Malayalam are some examples for palindrome
  • 7. deque Applications A-Steal job scheduling algorithm – The A-Steal algorithm implements task scheduling for several processors(multiprocessor scheduling). – The processor gets the first element from the deque. – When one of the processor completes execution of its own threads it can steal a thread from another processor. – It gets the last element from the deque of another processor and executes it.
  • 8. deque Applications Undo - Redo operation in software applications