SlideShare a Scribd company logo
3
Most read
4
Most read
5
Most read
Queue and
stacks
• What they are
• How they work
• How to make them
• Typical problems
Sample exam question
• What is a queue?
• What is a stack?
• How can one reverse the other?
Queue
• First in
• First Out
FIFO
Stack
• Last in
• First out
LIFO
The problem with
queues
• Queues work as you would expect
– First in, First out - FIFO
– Later items take their turn behind earlier
ones.
• Because of the ‘no shuffling’ rule,
these turn out to be tricky to
implement
Classic Array-Style Queue
• Items are read off the front of the
queue
W H E R E sp T H E sp
Front of Queue Rear of Queue Limit
Classic Array-Style Queue
• And added to the rear
W H E R E sp T H E sp S
Front of Queue Rear of Queue Limit
Item = W
Classic Array-Style Queue
• Until we run out of space
• Then we’re stuffed.
W H E R E sp T H E sp S T R E
Front of Queue
Rear of Queue
Limit
Item = WHER Warning: Queue Full!
Queue and stacks
Brilliant Idea!
• If you get to the end ..
• Wrap round to the front
• Until you hit the Rear pointer
E E T R E sp T H E sp S T R E
Front of QueueRear of Queue Limit
Item = WHERE
Circular queue
• It’s not really a circle!
E
E
T R E sp T H E sp S T
R
E
Front of Queue
Rear of Queue
EndStart
Queue and stacks
Queue and stacks

More Related Content

PPT
Stack & queue
PPT
Queue data structure
PPT
Queue Data Structure
PPTX
STACKS IN DATASTRUCTURE
PPSX
PPTX
stack & queue
PPTX
Stack data structure
PPT
Notes DATA STRUCTURE - queue
Stack & queue
Queue data structure
Queue Data Structure
STACKS IN DATASTRUCTURE
stack & queue
Stack data structure
Notes DATA STRUCTURE - queue

Viewers also liked (20)

PPT
Stack & queues
PPTX
Stack and queue
PPT
Stacks & Queues By Ms. Niti Arora
PPTX
queue & its applications
PPT
PPTX
Ppt presentation of queues
PPSX
Stacks Implementation and Examples
PPTX
Stack and Queue
PPT
Stack a Data Structure
PPT
Stacks in algorithems & data structure
PPTX
Queue Data Structure (w/ php egs)
PPTX
Linked list
PPT
Linked lists
PPT
Computer notes - Josephus Problem
PPSX
Data structure stack&queue basics
PDF
Binary search algorithm
PDF
Stacks and queues
PPT
CHC Finance: Using the New IRS 990 Form
PPTX
Sorting Technique
Stack & queues
Stack and queue
Stacks & Queues By Ms. Niti Arora
queue & its applications
Ppt presentation of queues
Stacks Implementation and Examples
Stack and Queue
Stack a Data Structure
Stacks in algorithems & data structure
Queue Data Structure (w/ php egs)
Linked list
Linked lists
Computer notes - Josephus Problem
Data structure stack&queue basics
Binary search algorithm
Stacks and queues
CHC Finance: Using the New IRS 990 Form
Sorting Technique
Ad

More from grahamwell (20)

PPTX
Pseudocode
PPT
Excel =if function
PPT
Excel Min max-average
PPTX
What is binary and why do we use it?
PPTX
Introduction to touch develop
PPTX
Introduction to touch develop
PPTX
The software story
PPTX
Turtle graphics
PPTX
Database field types
PPTX
Databases 101
PPTX
Kodu controls
PPT
Pascal names and types
PPT
Python part two names and types
PPTX
Abstraction - Year 9
PPTX
Thinking about your project
PPTX
The rail fence
PPT
Lesson 1
PPT
Rsa encryption
PPT
Server side scripts
PPTX
Revision topic 1 sensors and control
Pseudocode
Excel =if function
Excel Min max-average
What is binary and why do we use it?
Introduction to touch develop
Introduction to touch develop
The software story
Turtle graphics
Database field types
Databases 101
Kodu controls
Pascal names and types
Python part two names and types
Abstraction - Year 9
Thinking about your project
The rail fence
Lesson 1
Rsa encryption
Server side scripts
Revision topic 1 sensors and control
Ad

Recently uploaded (20)

PDF
Diabetes mellitus diagnosis method based random forest with bat algorithm
PDF
Encapsulation theory and applications.pdf
PDF
Architecting across the Boundaries of two Complex Domains - Healthcare & Tech...
PDF
Building Integrated photovoltaic BIPV_UPV.pdf
PDF
Machine learning based COVID-19 study performance prediction
PDF
Empathic Computing: Creating Shared Understanding
PDF
Spectral efficient network and resource selection model in 5G networks
PPTX
Digital-Transformation-Roadmap-for-Companies.pptx
PPTX
Spectroscopy.pptx food analysis technology
PDF
The Rise and Fall of 3GPP – Time for a Sabbatical?
PPTX
Programs and apps: productivity, graphics, security and other tools
PDF
Agricultural_Statistics_at_a_Glance_2022_0.pdf
PDF
Network Security Unit 5.pdf for BCA BBA.
PDF
Unlocking AI with Model Context Protocol (MCP)
PPTX
ACSFv1EN-58255 AWS Academy Cloud Security Foundations.pptx
PDF
Profit Center Accounting in SAP S/4HANA, S4F28 Col11
PDF
Encapsulation_ Review paper, used for researhc scholars
PPT
“AI and Expert System Decision Support & Business Intelligence Systems”
PDF
Electronic commerce courselecture one. Pdf
PDF
KodekX | Application Modernization Development
Diabetes mellitus diagnosis method based random forest with bat algorithm
Encapsulation theory and applications.pdf
Architecting across the Boundaries of two Complex Domains - Healthcare & Tech...
Building Integrated photovoltaic BIPV_UPV.pdf
Machine learning based COVID-19 study performance prediction
Empathic Computing: Creating Shared Understanding
Spectral efficient network and resource selection model in 5G networks
Digital-Transformation-Roadmap-for-Companies.pptx
Spectroscopy.pptx food analysis technology
The Rise and Fall of 3GPP – Time for a Sabbatical?
Programs and apps: productivity, graphics, security and other tools
Agricultural_Statistics_at_a_Glance_2022_0.pdf
Network Security Unit 5.pdf for BCA BBA.
Unlocking AI with Model Context Protocol (MCP)
ACSFv1EN-58255 AWS Academy Cloud Security Foundations.pptx
Profit Center Accounting in SAP S/4HANA, S4F28 Col11
Encapsulation_ Review paper, used for researhc scholars
“AI and Expert System Decision Support & Business Intelligence Systems”
Electronic commerce courselecture one. Pdf
KodekX | Application Modernization Development

Queue and stacks