SlideShare a Scribd company logo
Stacks and Queues
CSC220 Data Structure
Winter 2004-5
Abstract Data Type
• Abstract Data Type as a design tool
• Concerns only on the important concept or
model
• No concern on implementation details.
• Stack & Queue is an example of ADT
• An array is not ADT.
What is the
difference?
• Stack & Queue vs. Array
– Arrays are data storage structures while stacks and
queues are specialized DS and used as programmer’s
tools.
• Stack – a container that allows push and pop
• Queue - a container that allows enqueue and
dequeue
• No concern on implementation details.
• In an array any item can be accessed, while in
these data structures access is restricted.
• They are more abstract than arrays.
Questions?
• Array is not ADT
• Is Linked list ADT?
• Is Binary-tree ADT?
• Is Hash table ADT?
• What about graph?
Stacks
• Allows access to only the last item inserted.
• An item is inserted or removed from the stack
from one end called the “top” of the stack.
• This mechanism is called Last-In-First-Out
(LIFO).
A Stack Applet example
Stack operations
• Placing a data item on the top is called
“pushing”, while removing an item from the top is
called “popping” it.
• push and pop are the primary stack operations.
• Some of the applications are : microprocessors,
some older calculators etc.
Example of Stack codes
• First example stack ADT and implementation
C:Documents and SettingsboxMy DocumentsCSCSC220ReaderProgramsReaderFilesCh
• push and pop operations are performed in O(1)
time.
Example of Stack codes
• Reversed word
• What is it?
• ABC -> CBA
C:Documents and SettingsboxMy DocumentsCS
Example of Stack codes
• BracketChecker (balancer)
• A syntax checker (compiler) that understands a
language containing any strings with balanced
brackets ‘{‘ ‘[‘ ‘(‘ and ‘)’, ‘]’, ‘}’
– S -> Bl S1 Br
– S1 -> Bl string Br
– Bl -> ‘{‘ | ‘[‘ | ‘(‘
– Br -> ‘)’, | ‘]’, | ‘}’
C:Documents and SettingsboxMy
DocumentsCSCSC220ReaderProgramsReaderFile
sChap04Bracketsbrackets.java
Queues
• Queue is an ADT data structure similar to stack, except
that the first item to be inserted is the first one to be
removed.
• This mechanism is called First-In-First-Out (FIFO).
• Placing an item in a queue is called “insertion or
enqueue”, which is done at the end of the queue called
“rear”.
• Removing an item from a queue is called “deletion or
dequeue”, which is done at the other end of the queue
called “front”.
• Some of the applications are : printer queue, keystroke
queue, etc.
Circular Queue
• When a new item is inserted at the rear, the
pointer to rear moves upwards.
• Similarly, when an item is deleted from the
queue the front arrow moves downwards.
• After a few insert and delete operations the rear
might reach the end of the queue and no more
items can be inserted although the items from
the front of the queue have been deleted and
there is space in the queue.
Circular Queue
• To solve this problem, queues implement
wrapping around. Such queues are called
Circular Queues.
• Both the front and the rear pointers wrap around
to the beginning of the array.
• It is also called as “Ring buffer”.
• Items can inserted and deleted from a queue in
O(1) time.
Queue Example
+Queue()
+insert() : void
+remove() : long
+peekFront() : long
+isEmpty() : bool
+isFull() : bool
+size() : int
-maxSize : int
-queueArray [] : long
-front : int
-rear : int
-nItems : int
Queue
QueueApp
Interface1
Queue sample code
• C:Documents and SettingsboxMy Documen
Various Queues
• Normal queue (FIFO)
• Circular Queue (Normal Queue)
• Double-ended Queue (Deque)
• Priority Queue
Deque
• It is a double-ended queue.
• Items can be inserted and deleted from either
ends.
• More versatile data structure than stack or
queue.
• E.g. policy-based application (e.g. low priority go
to the end, high go to the front)
• In a case where you want to sort the queue once
in a while, What sorting algorithm will you use?
Priority Queues
• More specialized data structure.
• Similar to Queue, having front and rear.
• Items are removed from the front.
• Items are ordered by key value so that the item
with the lowest key (or highest) is always at the
front.
• Items are inserted in proper position to maintain
the order.
• Let’s discuss complexity
Priority Queue
Example
+Queue()
+insert() : void
+remove() : long
+peekMin() : long
+isEmpty() : bool
+isFull() : bool
-maxSize : int
-queueArray [] : long
-nItems : int
PrioityQ
PriorityQApp
Interface1
Priority Queues
• Used in multitasking operating system.
• They are generally represented using
“heap” data structure.
• Insertion runs in O(n) time, deletion in O(1)
time.
• C:Documents and SettingsboxMy
DocumentsCSCSC220ReaderPrograms
ReaderFilesChap04PriorityQpriorityQ.ja
va
Parsing Arithmetic
Expressions
• 2 + 3
• 2 + 4 * 5
• ((2 + 4) * 7) + 3* (9 – 5))
• Infix vs postfix
• Why do we want to do this
transformation?
• 2 3 +
• 2 4 5 * +
• 2 4 + 7 * 3 9 5 - * +
Infix to postfix
• Read ch from input until empty
– If ch is arg , output = output + arg
– If ch is “(“, push ‘(‘;
– If ch is op and higher than top push ch
– If ch is “)” or end of input,
• output = output + pop() until empty or top is “(“
– Read next input
• C:Documents and SettingsboxMy
DocumentsCSCSC220ReaderProgramsRead
erFilesChap04Postfixpostfix.java
Postfix eval
• 5 + 2 * 3 -> 5 2 3 * +
• Algorithm
– While input is not empty
– If ch is number , push (ch)
– Else
• Pop (a)
• Pop(b)
• Eval (ch, a, b)
• C:Documents and SettingsboxMy
DocumentsCSCSC220ReaderProgramsRead
erFilesChap04Postfixpostfix.java
Quick XML Review
• XML – Wave of the future
Another Real world
example
• <?xml version = "1.0"?>
• <!-- An author -->
• <author>
• <name gender = "male">
• <first> Art </first>
• <last> Gittleman </last>
• </name>
• </author>

More Related Content

What's hot (20)

PPTX
Introduction to HDF5 Data and Programming Models
The HDF-EOS Tools and Information Center
 
PDF
Learning R and Teaching R
Ajay Ohri
 
PPT
Queue in Data Structure
Muhazzab Chouhadry
 
PPT
Queue Data Structure
Lovely Professional University
 
PDF
TMPA-2017: Static Checking of Array Objects in JavaScript
Iosif Itkin
 
PPTX
Stack and queue
CHANDAN KUMAR
 
PDF
Stacks and queues
Abbott
 
PPTX
Stack in Sata Structure
Muhazzab Chouhadry
 
PPT
Chapter 6 ds
Hanif Durad
 
PPTX
Ppt presentation of queues
Buxoo Abdullah
 
PPTX
Session 16 - Collections - Sorting, Comparing Basics
PawanMM
 
PDF
Queues
Hareem Aslam
 
PPTX
Stack and Queue by M.Gomathi Lecturer
gomathi chlm
 
PDF
All python data_analyst_r_course
Kamal A
 
PDF
Gems in the python standard library
jasonscheirer
 
PPT
Chapter 11 ds
Hanif Durad
 
PPTX
Session 20 - Collections - Maps
PawanMM
 
PDF
The TileDB Array Data Storage Manager - Stavros Papadopoulos, Jake Bolewski
PyData
 
Introduction to HDF5 Data and Programming Models
The HDF-EOS Tools and Information Center
 
Learning R and Teaching R
Ajay Ohri
 
Queue in Data Structure
Muhazzab Chouhadry
 
Queue Data Structure
Lovely Professional University
 
TMPA-2017: Static Checking of Array Objects in JavaScript
Iosif Itkin
 
Stack and queue
CHANDAN KUMAR
 
Stacks and queues
Abbott
 
Stack in Sata Structure
Muhazzab Chouhadry
 
Chapter 6 ds
Hanif Durad
 
Ppt presentation of queues
Buxoo Abdullah
 
Session 16 - Collections - Sorting, Comparing Basics
PawanMM
 
Queues
Hareem Aslam
 
Stack and Queue by M.Gomathi Lecturer
gomathi chlm
 
All python data_analyst_r_course
Kamal A
 
Gems in the python standard library
jasonscheirer
 
Chapter 11 ds
Hanif Durad
 
Session 20 - Collections - Maps
PawanMM
 
The TileDB Array Data Storage Manager - Stavros Papadopoulos, Jake Bolewski
PyData
 

Similar to linked list in c++ (20)

PPTX
stack.pptx
mayankKatiyar17
 
PDF
Queue ADT for data structure for computer
abinathsabi
 
PPTX
stack & queue
manju rani
 
PPTX
data structures power point presentation
cselt2403
 
PPTX
2CPP17 - File IO
Michael Heron
 
PPT
Data Structures
Dr.Umadevi V
 
PPTX
Stack and Queue......................pptx
tinotendamcbern91
 
PPTX
Stack and queue
LavanyaJ28
 
PPTX
II B.Sc IT DATA STRUCTURES.pptx
sabithabanu83
 
PPTX
Week2-stacks-queues.pptx
VandanaBharti21
 
PPTX
Learn c++ Programming Language
Steve Johnson
 
PPTX
UNIT II LINEAR DATA STRUCTURES – STACKS.pptx
kncetaruna
 
PPT
lecture1.ppt
SanjeevKumarSinha13
 
PDF
DSJ_Unit I & II.pdf
Arumugam90
 
PPTX
Data structure and algorithm using java
Narayan Sau
 
PDF
Data Structures and Algorithm - Week 3 - Stacks and Queues
Ferdin Joe John Joseph PhD
 
PPTX
UNIT II LINEAR DATA STRUCTURES – STACKS.pptx
VISWANATHAN R V
 
PPTX
CPP17 - File IO
Michael Heron
 
PPTX
Stack and queue power point presentation data structure and algorithms Stack-...
abhaysingh19149
 
PPT
Data structures
Manaswi Sharma
 
stack.pptx
mayankKatiyar17
 
Queue ADT for data structure for computer
abinathsabi
 
stack & queue
manju rani
 
data structures power point presentation
cselt2403
 
2CPP17 - File IO
Michael Heron
 
Data Structures
Dr.Umadevi V
 
Stack and Queue......................pptx
tinotendamcbern91
 
Stack and queue
LavanyaJ28
 
II B.Sc IT DATA STRUCTURES.pptx
sabithabanu83
 
Week2-stacks-queues.pptx
VandanaBharti21
 
Learn c++ Programming Language
Steve Johnson
 
UNIT II LINEAR DATA STRUCTURES – STACKS.pptx
kncetaruna
 
lecture1.ppt
SanjeevKumarSinha13
 
DSJ_Unit I & II.pdf
Arumugam90
 
Data structure and algorithm using java
Narayan Sau
 
Data Structures and Algorithm - Week 3 - Stacks and Queues
Ferdin Joe John Joseph PhD
 
UNIT II LINEAR DATA STRUCTURES – STACKS.pptx
VISWANATHAN R V
 
CPP17 - File IO
Michael Heron
 
Stack and queue power point presentation data structure and algorithms Stack-...
abhaysingh19149
 
Data structures
Manaswi Sharma
 
Ad

Recently uploaded (20)

PPTX
ROLE OF ANTIOXIDANT IN EYE HEALTH MANAGEMENT.pptx
Subham Panja
 
PPTX
Optimizing Cancer Screening With MCED Technologies: From Science to Practical...
i3 Health
 
PPSX
HEALTH ASSESSMENT (Community Health Nursing) - GNM 1st Year
Priyanshu Anand
 
PPTX
Presentation: Climate Citizenship Digital Education
Karl Donert
 
PPTX
Views on Education of Indian Thinkers J.Krishnamurthy..pptx
ShrutiMahanta1
 
PDF
The-Beginnings-of-Indian-Civilisation.pdf/6th class new ncert social/by k san...
Sandeep Swamy
 
PPTX
Optimizing Cancer Screening With MCED Technologies: From Science to Practical...
i3 Health
 
PDF
BÀI TẬP BỔ TRỢ TIẾNG ANH 8 - GLOBAL SUCCESS - CẢ NĂM - NĂM 2024 (VOCABULARY, ...
Nguyen Thanh Tu Collection
 
PPTX
How to Create Rental Orders in Odoo 18 Rental
Celine George
 
PPTX
Explorando Recursos do Summer '25: Dicas Essenciais - 02
Mauricio Alexandre Silva
 
PPTX
Growth and development and milestones, factors
BHUVANESHWARI BADIGER
 
PPTX
SCHOOL-BASED SEXUAL HARASSMENT PREVENTION AND RESPONSE WORKSHOP
komlalokoe
 
PPTX
HEAD INJURY IN CHILDREN: NURSING MANAGEMENGT.pptx
PRADEEP ABOTHU
 
PDF
community health nursing question paper 2.pdf
Prince kumar
 
PPTX
How to Manage Promotions in Odoo 18 Sales
Celine George
 
PPTX
Views on Education of Indian Thinkers Mahatma Gandhi.pptx
ShrutiMahanta1
 
PDF
Zoology (Animal Physiology) practical Manual
raviralanaresh2
 
PPTX
ASRB NET 2023 PREVIOUS YEAR QUESTION PAPER GENETICS AND PLANT BREEDING BY SAT...
Krashi Coaching
 
PPTX
Optimizing Cancer Screening With MCED Technologies: From Science to Practical...
i3 Health
 
PPTX
Nutri-QUIZ-Bee-Elementary.pptx...................
ferdinandsanbuenaven
 
ROLE OF ANTIOXIDANT IN EYE HEALTH MANAGEMENT.pptx
Subham Panja
 
Optimizing Cancer Screening With MCED Technologies: From Science to Practical...
i3 Health
 
HEALTH ASSESSMENT (Community Health Nursing) - GNM 1st Year
Priyanshu Anand
 
Presentation: Climate Citizenship Digital Education
Karl Donert
 
Views on Education of Indian Thinkers J.Krishnamurthy..pptx
ShrutiMahanta1
 
The-Beginnings-of-Indian-Civilisation.pdf/6th class new ncert social/by k san...
Sandeep Swamy
 
Optimizing Cancer Screening With MCED Technologies: From Science to Practical...
i3 Health
 
BÀI TẬP BỔ TRỢ TIẾNG ANH 8 - GLOBAL SUCCESS - CẢ NĂM - NĂM 2024 (VOCABULARY, ...
Nguyen Thanh Tu Collection
 
How to Create Rental Orders in Odoo 18 Rental
Celine George
 
Explorando Recursos do Summer '25: Dicas Essenciais - 02
Mauricio Alexandre Silva
 
Growth and development and milestones, factors
BHUVANESHWARI BADIGER
 
SCHOOL-BASED SEXUAL HARASSMENT PREVENTION AND RESPONSE WORKSHOP
komlalokoe
 
HEAD INJURY IN CHILDREN: NURSING MANAGEMENGT.pptx
PRADEEP ABOTHU
 
community health nursing question paper 2.pdf
Prince kumar
 
How to Manage Promotions in Odoo 18 Sales
Celine George
 
Views on Education of Indian Thinkers Mahatma Gandhi.pptx
ShrutiMahanta1
 
Zoology (Animal Physiology) practical Manual
raviralanaresh2
 
ASRB NET 2023 PREVIOUS YEAR QUESTION PAPER GENETICS AND PLANT BREEDING BY SAT...
Krashi Coaching
 
Optimizing Cancer Screening With MCED Technologies: From Science to Practical...
i3 Health
 
Nutri-QUIZ-Bee-Elementary.pptx...................
ferdinandsanbuenaven
 
Ad

linked list in c++

  • 1. Stacks and Queues CSC220 Data Structure Winter 2004-5
  • 2. Abstract Data Type • Abstract Data Type as a design tool • Concerns only on the important concept or model • No concern on implementation details. • Stack & Queue is an example of ADT • An array is not ADT.
  • 3. What is the difference? • Stack & Queue vs. Array – Arrays are data storage structures while stacks and queues are specialized DS and used as programmer’s tools. • Stack – a container that allows push and pop • Queue - a container that allows enqueue and dequeue • No concern on implementation details. • In an array any item can be accessed, while in these data structures access is restricted. • They are more abstract than arrays.
  • 4. Questions? • Array is not ADT • Is Linked list ADT? • Is Binary-tree ADT? • Is Hash table ADT? • What about graph?
  • 5. Stacks • Allows access to only the last item inserted. • An item is inserted or removed from the stack from one end called the “top” of the stack. • This mechanism is called Last-In-First-Out (LIFO). A Stack Applet example
  • 6. Stack operations • Placing a data item on the top is called “pushing”, while removing an item from the top is called “popping” it. • push and pop are the primary stack operations. • Some of the applications are : microprocessors, some older calculators etc.
  • 7. Example of Stack codes • First example stack ADT and implementation C:Documents and SettingsboxMy DocumentsCSCSC220ReaderProgramsReaderFilesCh • push and pop operations are performed in O(1) time.
  • 8. Example of Stack codes • Reversed word • What is it? • ABC -> CBA C:Documents and SettingsboxMy DocumentsCS
  • 9. Example of Stack codes • BracketChecker (balancer) • A syntax checker (compiler) that understands a language containing any strings with balanced brackets ‘{‘ ‘[‘ ‘(‘ and ‘)’, ‘]’, ‘}’ – S -> Bl S1 Br – S1 -> Bl string Br – Bl -> ‘{‘ | ‘[‘ | ‘(‘ – Br -> ‘)’, | ‘]’, | ‘}’ C:Documents and SettingsboxMy DocumentsCSCSC220ReaderProgramsReaderFile sChap04Bracketsbrackets.java
  • 10. Queues • Queue is an ADT data structure similar to stack, except that the first item to be inserted is the first one to be removed. • This mechanism is called First-In-First-Out (FIFO). • Placing an item in a queue is called “insertion or enqueue”, which is done at the end of the queue called “rear”. • Removing an item from a queue is called “deletion or dequeue”, which is done at the other end of the queue called “front”. • Some of the applications are : printer queue, keystroke queue, etc.
  • 11. Circular Queue • When a new item is inserted at the rear, the pointer to rear moves upwards. • Similarly, when an item is deleted from the queue the front arrow moves downwards. • After a few insert and delete operations the rear might reach the end of the queue and no more items can be inserted although the items from the front of the queue have been deleted and there is space in the queue.
  • 12. Circular Queue • To solve this problem, queues implement wrapping around. Such queues are called Circular Queues. • Both the front and the rear pointers wrap around to the beginning of the array. • It is also called as “Ring buffer”. • Items can inserted and deleted from a queue in O(1) time.
  • 13. Queue Example +Queue() +insert() : void +remove() : long +peekFront() : long +isEmpty() : bool +isFull() : bool +size() : int -maxSize : int -queueArray [] : long -front : int -rear : int -nItems : int Queue QueueApp Interface1
  • 14. Queue sample code • C:Documents and SettingsboxMy Documen
  • 15. Various Queues • Normal queue (FIFO) • Circular Queue (Normal Queue) • Double-ended Queue (Deque) • Priority Queue
  • 16. Deque • It is a double-ended queue. • Items can be inserted and deleted from either ends. • More versatile data structure than stack or queue. • E.g. policy-based application (e.g. low priority go to the end, high go to the front) • In a case where you want to sort the queue once in a while, What sorting algorithm will you use?
  • 17. Priority Queues • More specialized data structure. • Similar to Queue, having front and rear. • Items are removed from the front. • Items are ordered by key value so that the item with the lowest key (or highest) is always at the front. • Items are inserted in proper position to maintain the order. • Let’s discuss complexity
  • 18. Priority Queue Example +Queue() +insert() : void +remove() : long +peekMin() : long +isEmpty() : bool +isFull() : bool -maxSize : int -queueArray [] : long -nItems : int PrioityQ PriorityQApp Interface1
  • 19. Priority Queues • Used in multitasking operating system. • They are generally represented using “heap” data structure. • Insertion runs in O(n) time, deletion in O(1) time. • C:Documents and SettingsboxMy DocumentsCSCSC220ReaderPrograms ReaderFilesChap04PriorityQpriorityQ.ja va
  • 20. Parsing Arithmetic Expressions • 2 + 3 • 2 + 4 * 5 • ((2 + 4) * 7) + 3* (9 – 5)) • Infix vs postfix • Why do we want to do this transformation? • 2 3 + • 2 4 5 * + • 2 4 + 7 * 3 9 5 - * +
  • 21. Infix to postfix • Read ch from input until empty – If ch is arg , output = output + arg – If ch is “(“, push ‘(‘; – If ch is op and higher than top push ch – If ch is “)” or end of input, • output = output + pop() until empty or top is “(“ – Read next input • C:Documents and SettingsboxMy DocumentsCSCSC220ReaderProgramsRead erFilesChap04Postfixpostfix.java
  • 22. Postfix eval • 5 + 2 * 3 -> 5 2 3 * + • Algorithm – While input is not empty – If ch is number , push (ch) – Else • Pop (a) • Pop(b) • Eval (ch, a, b) • C:Documents and SettingsboxMy DocumentsCSCSC220ReaderProgramsRead erFilesChap04Postfixpostfix.java
  • 23. Quick XML Review • XML – Wave of the future
  • 24. Another Real world example • <?xml version = "1.0"?> • <!-- An author --> • <author> • <name gender = "male"> • <first> Art </first> • <last> Gittleman </last> • </name> • </author>