Priority Queues. Priority queue A stack is first in, last out A queue is first in, first out A priority queue is least-first-out –The “smallest” element.

Slides:



Advertisements
Similar presentations
Heaps1 Part-D2 Heaps Heaps2 Recall Priority Queue ADT (§ 7.1.3) A priority queue stores a collection of entries Each entry is a pair (key, value)
Advertisements

Priority Queues. 2 Priority queue A stack is first in, last out A queue is first in, first out A priority queue is least-first-out The “smallest” element.
CHAPTER 5 PRIORITY QUEUES (HEAPS) §1 ADT Model Objects: A finite ordered list with zero or more elements. Operations:  PriorityQueue Initialize( int.
1 Chapter 6 Priority Queues (Heaps) General ideas of priority queues (Insert & DeleteMin) Efficient implementation of priority queue Uses of priority queues.
Priority Queues. Container of elements where each element has an associated key A key is an attribute that can identify rank or weight of an element Examples.
Heapsort. 2 Why study Heapsort? It is a well-known, traditional sorting algorithm you will be expected to know Heapsort is always O(n log n) Quicksort.
© 2004 Goodrich, Tamassia Heaps © 2004 Goodrich, Tamassia Heaps2 Priority Queue Sorting (§ 8.1.4) We can use a priority queue to sort a set.
Heaps & Priority Queues Nelson Padua-Perez Bill Pugh Department of Computer Science University of Maryland, College Park.
Priority Queues. Priority queue A stack is first in, last out A queue is first in, first out A priority queue is least-first-out –The “smallest” element.
1 CS211, Lecture 20 Priority queues and Heaps Readings: Weiss, sec. 6.9, secs When they've got two queues going, there's never any queue!
Priority Queues. Container of elements where each element has an associated key A key is an attribute that can identify rank or weight of an element Examples.
Source: Muangsin / Weiss1 Priority Queue (Heap) A kind of queue Dequeue gets element with the highest priority Priority is based on a comparable value.
Priority Queues1 Part-D1 Priority Queues. Priority Queues2 Priority Queue ADT (§ 7.1.3) A priority queue stores a collection of entries Each entry is.
CSE 373 Data Structures and Algorithms Lecture 13: Priority Queues (Heaps)
CSC 172 DATA STRUCTURES. Priority Queues Model Set with priorities associatedwith elements Priorities are comparable by a < operator Operations Insert.
Heapsort Based off slides by: David Matuszek
1 HEAPS & PRIORITY QUEUES Array and Tree implementations.
Geoff Holmes and Bernhard Pfahringer COMP206-08S General Programming 2.
1 Hash Tables  a hash table is an array of size Tsize  has index positions 0.. Tsize-1  two types of hash tables  open hash table  array element type.
Priority Queue What is that? Implementation with linked list with O(n) behaviour The Heap (O(log(n)) An implementation using an array Your mission …
ADT Table and Heap Ellen Walker CPSC 201 Data Structures Hiram College.
Heapsort CSC Why study Heapsort? It is a well-known, traditional sorting algorithm you will be expected to know Heapsort is always O(n log n)
The Binary Heap. Binary Heap Looks similar to a binary search tree BUT all the values stored in the subtree rooted at a node are greater than or equal.
1 Heaps and Priority Queues Starring: Min Heap Co-Starring: Max Heap.
Priority Queues Dr. David Matuszek
CSC 213 – Large Scale Programming Lecture 15: Heap-based Priority Queue.
PRIORITY QUEUES AND HEAPS CS16: Introduction to Data Structures & Algorithms Tuesday, February 24,
Chapter 2: Basic Data Structures. Spring 2003CS 3152 Basic Data Structures Stacks Queues Vectors, Linked Lists Trees (Including Balanced Trees) Priority.
1 Heaps and Priority Queues v2 Starring: Min Heap Co-Starring: Max Heap.
Data Structures Chapter 6. Data Structure A data structure is a representation of data and the operations allowed on that data. Examples: 1.Array 2.Record.
Queues, Stacks and Heaps. Queue List structure using the FIFO process Nodes are removed form the front and added to the back ABDC FrontBack.
Week 13 - Friday.  What did we talk about last time?  Sorting  Insertion sort  Merge sort  Started quicksort.
Heapsort. What is a “heap”? Definitions of heap: 1.A large area of memory from which the programmer can allocate blocks as needed, and deallocate them.
Heaps & Priority Queues
Chapter 13 Priority Queues. 2 Priority queue A stack is first in, last out A queue is first in, first out A priority queue is least-in-first-out The “smallest”
Prof. Amr Goneid, AUC1 Analysis & Design of Algorithms (CSCE 321) Prof. Amr Goneid Department of Computer Science, AUC Part R3. Priority Queues.
HEAPS. Review: what are the requirements of the abstract data type: priority queue? Quick removal of item with highest priority (highest or lowest key.
Java Methods A & AB Object-Oriented Programming and Data Structures Maria Litvin ● Gary Litvin Copyright © 2006 by Maria Litvin, Gary Litvin, and Skylight.
CS 367 Introduction to Data Structures Lecture 8.
Priority Queues CS 110: Data Structures and Algorithms First Semester,
Heaps © 2010 Goodrich, Tamassia. Heaps2 Priority Queue ADT  A priority queue (PQ) stores a collection of entries  Typically, an entry is a.
Week 13 - Wednesday.  What did we talk about last time?  NP-completeness.
Priority Queues CS /02/05 L7: PQs Slide 2 Copyright 2005, by the authors of these slides, and Ateneo de Manila University. All rights reserved.
CS 201 Data Structures and Algorithms
Heaps (8.3) CSE 2011 Winter May 2018.
Priority Queues and Heaps
Heaps 8/2/2018 Presentation for use with the textbook Data Structures and Algorithms in Java, 6th edition, by M. T. Goodrich, R. Tamassia, and M. H. Goldwasser,
Source: Muangsin / Weiss
Bohyung Han CSE, POSTECH
Heaps 9/13/2018 3:17 PM Heaps Heaps.
original list {67, 33,49, 21, 25, 94} pass { } {67 94}
Dr. David Matuszek Heapsort Dr. David Matuszek
Priority Queues.
Tree Representation Heap.
© 2013 Goodrich, Tamassia, Goldwasser
Heapsort.
Heaps © 2014 Goodrich, Tamassia, Goldwasser Heaps Heaps
A Heap Implementation Chapter 26 Adapted from Pearson Education, Inc.
Priority Queues.
Priority Queues.
Heapsort.
Heaps By JJ Shepherd.
Heapsort.
Chapter 9 The Priority Queue ADT
Heapsort.
CO 303 Algorithm Analysis and Design
The Heap ADT A heap is a complete binary tree where each node’s datum is greater than or equal to the data of all of the nodes in the left and right.
Heaps 9/29/2019 5:43 PM Heaps Heaps.
CS210- Lecture 13 June 28, 2005 Agenda Heaps Complete Binary Tree
Presentation transcript:

Priority Queues

Priority queue A stack is first in, last out A queue is first in, first out A priority queue is least-first-out –The “smallest” element is the first one removed –The definition of “smallest” is up to the programmer (for example, you might define it by implementing Comparator or Comparable ) –If there are several “smallest” elements, the implementer must decide which to remove first Remove any “smallest” element (don’t care which) Remove the first one added

A priority queue ADT Here is one possible ADT: –PriorityQueue() : a constructor –void add(Comparable o) : inserts o into the priority queue –Comparable removeLeast() : removes and returns the least element –Comparable getLeast() : returns (but does not remove) the least element –boolean isEmpty() : returns true iff empty –int size() : returns the number of elements –void clear() : discards all elements

Evaluating implementations When we choose a data structure, it is important to look at usage patterns –If we load an array once and do thousands of searches on it, we want to make searching fast—so we would probably sort the array –If we load a huge array and expect to do only a few searches, we probably don’t want to spend time sorting the array For almost all uses of a queue (including a priority queue), we eventually remove everything that we add Hence, when we analyze a priority queue, neither “add” nor “remove” is more important—we need to look at the timing for “add + remove”

Array implementations A priority queue could be implemented as an unsorted array (with a count of elements) –Adding an element would take O(1) time (why?) –Removing an element would take O(n) time (why?) –Hence, adding and removing an element takes O(n) time –This is a very inefficient representation A priority queue could be implemented as a sorted array (again, with a count of elements) –Adding an element would take O(n) time (why?) –Removing an element would take O(1) time (why?) –Hence, adding and removing an element takes O(n) time –Again, this is very inefficient

Linked list implementations A priority queue could be implemented as an unsorted linked list –Adding an element would take O(1) time (why?) –Removing an element would take O(n) time (why?) A priority queue could be implemented as a sorted linked list –Adding an element would take O(n) time (why?) –Removing an element would take O(1) time (why?) As with array representations, adding and removing an element takes O(n) time –Again, this is very inefficient

Binary tree implementations A priority queue could be represented as a (not necessarily balanced) binary search tree –Insertion times would range from O(log n) to O(n) (why?) –Removal times would range from O(log n) to O(n) (why?) A priority queue could be represented as a balanced binary search tree –Insertion and removal could destroy the balance –We need an algorithm to rebalance the binary tree –Good rebalancing algorithms require only O(log n) time, but are complicated

Heap implementation A priority queue can be implemented as a heap In order to do this, we have to define the heap property –In Heapsort, a node has the heap property if it is at least as large as its children –For a priority queue, we will define a node to have the heap property if it is as least as small as its children (since we are using smaller numbers to represent higher priorities) Heapsort: Blue node has the heap property Priority queue: Blue node has the heap property

Array representation of a heap Left child of node i is 2*i + 1, right child is 2*i + 2 –Unless the computation yields a value larger than lastIndex, in which case there is no such child Parent of node i is (i – 1)/2 –Unless i == lastIndex = 5

Using the heap To add an element: –Increase lastIndex and put the new value there –Reheap the newly added node This is called up-heap bubbling or percolating up Up-heap bubbling requires O(log n) time To remove an element: –Remove the element at location 0 –Move the element at location lastIndex to location 0, and decrement lastIndex –Reheap the new root node (the one now at location 0 ) This is called down-heap bubbling or percolating down Down-heap bubbling requires O(log n) time Thus, it requires O(log n) time to add and remove an element

The End