Queues1 © 2014 Goodrich, Tamassia, Goldwasser Presentation for use with the textbook Data Structures and Algorithms in Java, 6 th edition, by M. T. Goodrich,

Slides:



Advertisements
Similar presentations
STACKS & QUEUES. Stacks Abstract data types An abstract data type (ADT) is an abstraction of a data structure An ADT specifies : –Data stored –Operations.
Advertisements

1 Array-based Implementation An array Q of maximum size N Need to keep track the front and rear of the queue: f: index of the front object r: index immediately.
© 2004 Goodrich, Tamassia Queues1. © 2004 Goodrich, Tamassia Queues2 The Queue ADT (§4.3) The Queue ADT stores arbitrary objects Insertions and deletions.
Queues1 Part-B2 Queues. Queues2 The Queue ADT (§4.3) The Queue ADT stores arbitrary objects Insertions and deletions follow the first-in first-out scheme.
Queues 4/14/2017 5:24 PM 5.2 Queues Queues Dr Zeinab Eid.
1 Queues (5.2) CSE 2011 Winter May Announcements York Programming Contest Link also available from.
Stacks. Queues. Double-Ended Queues. 2 CPSC 3200 University of Tennessee at Chattanooga – Summer 2013 © 2010 Goodrich, Tamassia.
© 2004 Goodrich, Tamassia Stacks. © 2004 Goodrich, Tamassia Stacks2 The Stack ADT (§4.2) The Stack ADT stores arbitrary objects Insertions and deletions.
Data Structures Lecture 5 Fang Yu Department of Management Information Systems National Chengchi University Fall 2010.
Queues. What is a queue? First-in first-out data structure (FIFO) New objects are placed at rear Removal restricted to front Examples?
Elementary Data Structures Stacks, Queues, & Lists Amortized analysis Trees.
Queues. What is a queue? First-in first-out data structure (FIFO) New objects are placed at rear Removal restricted to front Examples?
Queues.
Queues. … frontrear dequeueenqueue Message queues in an operating system There are times that programs need to communicate with each other.
Stacks and QueuesCSC311: Data Structures1 Chapter 5 Stacks and Queues Objectives –Stacks and implementations –Queues and implementations –Double-ended.
Implementing and Using Stacks
Circular queue. Array-based Queue Use an array of size N in a circular fashion Three variables keep track of the front, rear, and size f index of the.
© 2004 Goodrich, Tamassia Queues1. © 2004 Goodrich, Tamassia Queues2 The Queue ADT (§4.3) The Queue ADT stores arbitrary objects Insertions and deletions.
CSE 373 Data Structures and Algorithms Lecture 2: Queues.
Stacks. week 2a2 Outline and Reading The Stack ADT (§4.1) Applications of Stacks Array-based implementation (§4.1.2) Growable array-based stack Think.
Stacks and Linked Lists. Abstract Data Types (ADTs) An ADT is an abstraction of a data structure that specifies – Data stored – Operations on the data.
Stacks & Queues EECS: Stacks & Queues Stacks April 23, 2017
© 2004 Goodrich, Tamassia Stacks. © 2004 Goodrich, Tamassia Stacks2 Abstract Data Types (ADTs) An abstract data type (ADT) is an abstraction of a data.
Queues by Dr. Bun Yue Professor of Computer Science CSCI 3333 Data Structures.
STACKS AND QUEUES 1. Outline 2  Stacks  Queues.
Mohammad Amin Kuhail M.Sc. (York, UK) University of Palestine Faculty of Engineering and Urban planning Software Engineering Department Computer Science.
Lecture7: Queue Bohyung Han CSE, POSTECH CSED233: Data Structures (2014F)
Lecture 3 Queues Queues1. queue: – Retrieves elements in the order they were added. – First-In, First-Out ("FIFO") – Elements are stored in order of insertion.
Queues CSCI 3333 Data Structures. Acknowledgement  Dr. Bun Yue  Mr. Charles Moen  Dr. Wei Ding  Ms. Krishani Abeysekera  Dr. Michael Goodrich  Dr.
Queue. Avoid confusion Britain Italy 6 Applications of Queues Direct applications –Waiting lists, bureaucracy –Access to shared resources (e.g.,
Parasol Lab, Dept. CSE, Texas A&M University
Welcome to CSCE 221 – Data Structures and Algorithms
M180: Data Structures & Algorithms in Java Queues Arab Open University 1.
Queue. The Queue ADT Insertions and deletions follow the first-in first-out scheme Insertions are at the rear of the queue and removals are at the front.
CH 5 : STACKS, QUEUES, AND DEQUES ACKNOWLEDGEMENT: THE SLIDES ARE PREPARED FROM SLIDES PROVIDED WITH DATA STRUCTURES AND ALGORITHMS IN C++, GOODRICH, TAMASSIA.
CS 221 Analysis of Algorithms Data Structures. Portions of the following slides are from  Goodrich and Tamassia, Algorithm Design: Foundations, Analysis.
1 COMP9024: Data Structures and Algorithms Week Four: Stacks and Queues Hui Wu Session 1, 2016
Circular Queues Maitrayee Mukerji. Queues First In – First Out (FIFO) The first element to be inserted is the first one to be retrieved Insertion at one.
Stacks Presentation for use with the textbook Data Structures and Algorithms in Java, 6 th edition, by M. T. Goodrich, R. Tamassia, and M. H. Goldwasser,
© 2004 Goodrich, Tamassia Queues. © 2004 Goodrich, Tamassia Stacks2 The Queue ADT The Queue ADT stores arbitrary objects Insertions and deletions follow.
Stacks 1/25/2018 Presentation for use with the textbook Data Structures and Algorithms in Java, 6th edition, by M. T. Goodrich, R. Tamassia, and M. H.
Queues.
Queues 5/11/2018 Presentation for use with the textbook Data Structures and Algorithms in Java, 6th edition, by M. T. Goodrich, R. Tamassia, and M. H.
Stacks.
Sequences 8/1/2018 4:38 AM Linked Lists Linked Lists.
Queues Queues Queues.
Queues Mohammad Asad Abbasi Lecture 5
Queues What is a queue? Queue Implementations: As Array
Queues 11/9/2018 6:28 PM Queues 11/9/2018 6:28 PM Queues.
Queues 11/9/2018 6:32 PM Queues.
Queues 11/16/2018 4:18 AM Queues 11/16/2018 4:18 AM Queues.
Queues 11/16/2018 4:19 AM Queues 11/16/2018 4:19 AM Queues.
Circular queue.
Queue.
Queues 11/22/2018 6:47 AM 5.2 Queues Queues Dr Zeinab Eid.
Queues 12/3/2018 Queues © 2014 Goodrich, Tamassia, Goldwasser Queues.
Queues 3/9/15 Presentation for use with the textbook Data Structures and Algorithms in Java, 6th edition, by M. T. Goodrich, R. Tamassia, and M. H. Goldwasser,
Queues 12/30/2018 9:24 PM Queues 12/30/2018 9:24 PM Queues.
CS2013 Lecture 7 John Hurley Cal State LA.
Recall What is a Data Structure Very Fundamental Data Structures
Recall What is a Data Structure Very Fundamental Data Structures
CS210- Lecture 5 Jun 9, 2005 Agenda Queues
Queues What is a Queue? Queue Implementations: As Array
Queues Jyh-Shing Roger Jang (張智星)
Copyright © Aiman Hanna All rights reserved
Lecture 8: Stacks, Queues
Queues What is a queue? Queue Implementations: As Array
Stacks and Linked Lists
Data Structures & Programming
Presentation transcript:

Queues1 © 2014 Goodrich, Tamassia, Goldwasser Presentation for use with the textbook Data Structures and Algorithms in Java, 6 th edition, by M. T. Goodrich, R. Tamassia, and M. H. Goldwasser, Wiley, 2014

Queues2 The Queue ADT  The Queue ADT stores arbitrary objects  Insertions and deletions follow the first-in first-out scheme (FIFO)  Insertions are at the rear of the queue and removals are at the front of the queue © 2014 Goodrich, Tamassia, Goldwasser

Queues3 Main queue operations  enqueue(object): inserts an element at the end of the queue  object dequeue(): removes and returns the element at the front of the queue © 2014 Goodrich, Tamassia, Goldwasser

Queues4 Auxiliary queue operations  object first(): returns the element at the front without removing it  integer size(): returns the number of elements stored  boolean isEmpty(): indicates whether no elements are stored  Boundary cases: Attempting the execution of dequeue or first on an empty queue returns null © 2014 Goodrich, Tamassia, Goldwasser

Queues5 Example OperationOutputQ enqueue(5)–(5) enqueue(3)–(5, 3) dequeue()5(3) enqueue(7)–(3, 7) dequeue()3(7) first()7(7) dequeue()7() dequeue()null() isEmpty()true() enqueue(9)–(9) enqueue(7)–(9, 7) size()2(9, 7) enqueue(3)–(9, 7, 3) enqueue(5)–(9, 7, 3, 5) dequeue()9(7, 3, 5) © 2014 Goodrich, Tamassia, Goldwasser

Queues6 Applications of Queues  Direct applications Waiting lists, bureaucracy Access to shared resources (e.g., printer) Multiprogramming  Indirect applications Auxiliary data structure for algorithms Component of other data structures © 2014 Goodrich, Tamassia, Goldwasser

Queues7 Array-based Queue  Use an array of size N in a circular fashion  Two variables keep track of the front and size f index of the front element sz number of stored elements  When the queue has fewer than N elements, array location r = (f + sz) mod N is the first empty slot past the rear of the queue Q 012rf normal configuration Q 012fr wrapped-around configuration © 2014 Goodrich, Tamassia, Goldwasser

Why “circular” array?  Why not “regular” array? the first item on the queue is always the first item in the array? front rear © 2014 Goodrich, Tamassia, Goldwasser8Queues 5397

Can we use a linked list to implement a queue?  What are the tradeoffs? © 2014 Goodrich, Tamassia, Goldwasser9Queues

10 Queue Operations Algorithm size() return sz Algorithm isEmpty() return (sz  ) Q 012rf Q 012fr © 2014 Goodrich, Tamassia, Goldwasser

Queues11 Queue Operations (cont.) Algorithm enqueue(o) if size() = N then throw IllegalStateException else r  (f + sz) mod N Q[r]  o sz  (sz + 1)  Operation enqueue throws an exception if the array is full  This exception is implementation- dependent Q 012rf Q 012fr © 2014 Goodrich, Tamassia, Goldwasser

Queues12 Queue Operations (cont.)  Note that operation dequeue returns null if the queue is empty Algorithm dequeue() if isEmpty() then return null else o  Q[f] f  (f + 1) mod N sz  (sz  1) return o Q 012rf Q 012fr © 2014 Goodrich, Tamassia, Goldwasser

Worst-case time complexity Operation“Circular “Array “Normal” ArrayLinked List (head & tail) enqueue dequeue © 2014 Goodrich, Tamassia, Goldwasser13Queues N items on the queue

Worst-case time complexity Operation“Circular” Array “Normal” ArrayLinked List (head & tail) enqueueO(1) dequeueO(1)O(N)O(1) © 2014 Goodrich, Tamassia, Goldwasser14Queues N items on the queue

Queues15 Queue Interface in Java  Java interface corresponding to our Queue ADT  Assumes that first() and dequeue() return null if queue is empty public interface Queue { int size(); boolean isEmpty(); E first(); void enqueue(E e); E dequeue(); } © 2014 Goodrich, Tamassia, Goldwasser

Array-based Implementation © 2014 Goodrich, Tamassia, Goldwasser16Queues

Array-based Implementation (2) © 2014 Goodrich, Tamassia, Goldwasser17Queues

Comparison to java.util.Queue  Our Queue methods and corresponding methods of java.util.Queue: © 2014 Goodrich, Tamassia, Goldwasser18Queues

19 Application: Round Robin Schedulers  We can implement a round robin scheduler using a queue Q by repeatedly performing the following steps: 1. e = Q.dequeue() 2. Service element e 3. Q.enqueue(e) © 2014 Goodrich, Tamassia, Goldwasser Shared Service Queue EnqueueDequeue