CS221: Algorithms and Data Structures Lecture #3 Mind Your Priority Queues Steve Wolfman 2010W2 1.

Slides:



Advertisements
Similar presentations
COL 106 Shweta Agrawal and Amit Kumar
Advertisements

CMSC 341 Binary Heaps Priority Queues. 8/3/2007 UMBC CSMC 341 PQueue 2 Priority Queues Priority: some property of an object that allows it to be prioritized.
Binary Trees, Binary Search Trees CMPS 2133 Spring 2008.
Heaps, Heap Sort, and Priority Queues
CSE332: Data Abstractions Lecture 4: Priority Queues Dan Grossman Spring 2010.
CSE332: Data Abstractions Lecture 5: Binary Heaps, Continued Tyler Robison Summer
1 CSE 326: Data Structures Priority Queues – Binary Heaps.
Priority Queue (Heap) & Heapsort COMP171 Fall 2006 Lecture 11 & 12.
CS 315 March 24 Goals: Heap (Chapter 6) priority queue definition of a heap Algorithms for Insert DeleteMin percolate-down Build-heap.
Binary Heaps CSE 373 Data Structures Lecture 11. 2/5/03Binary Heaps - Lecture 112 Readings Reading ›Sections
1 Trees. 2 Outline –Tree Structures –Tree Node Level and Path Length –Binary Tree Definition –Binary Tree Nodes –Binary Search Trees.
Version TCSS 342, Winter 2006 Lecture Notes Priority Queues Heaps.
Source: Muangsin / Weiss1 Priority Queue (Heap) A kind of queue Dequeue gets element with the highest priority Priority is based on a comparable value.
0 Course Outline n Introduction and Algorithm Analysis (Ch. 2) n Hash Tables: dictionary data structure (Ch. 5) n Heaps: priority queue data structures.
CSE 326: Data Structures Lecture #17 Priority Queues Alon Halevy Spring Quarter 2001.
CSE 326: Data Structures Binomial Queues Ben Lerner Summer 2007.
Binary Trees Chapter 6.
1 HEAPS & PRIORITY QUEUES Array and Tree implementations.
Compiled by: Dr. Mohammad Alhawarat BST, Priority Queue, Heaps - Heapsort CHAPTER 07.
CSE 326: Data Structures Lecture #13 Priority Queues and Binary Heaps Nick Deibel Winter Quarter 2002.
1 Trees Tree nomenclature Implementation strategies Traversals –Depth-first –Breadth-first Implementing binary search trees.
CS Data Structures Chapter 5 Trees. Chapter 5 Trees: Outline  Introduction  Representation Of Trees  Binary Trees  Binary Tree Traversals 
Spring 2010CS 2251 Trees Chapter 6. Spring 2010CS 2252 Chapter Objectives Learn to use a tree to represent a hierarchical organization of information.
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.
Binary Trees, Binary Search Trees RIZWAN REHMAN CENTRE FOR COMPUTER STUDIES DIBRUGARH UNIVERSITY.
Chapter 21 Binary Heap.
data ordered along paths from root to leaf
CS221: Algorithms and Data Structures Lecture #3 Mind Your Priority Queues Steve Wolfman 2011W2 1.
Chapter 21 Priority Queue: Binary Heap Saurav Karmakar.
Lecture1 introductions and Tree Data Structures 11/12/20151.
CSE373: Data Structures & Algorithms Lecture 6: Priority Queues Dan Grossman Fall 2013.
1 CSE 326 Data Structures Part 6: Priority Queues, AKA Heaps Henry Kautz Autumn 2002.
CS221: Algorithms and Data Structures Lecture #3 Mind Your Priority Queues Steve Wolfman 2014W1 1.
Priority Queues (Heaps)
CE 221 Data Structures and Algorithms Chapter 6: Priority Queues (Binary Heaps) Text: Read Weiss, §6.1 – 6.3 1Izmir University of Economics.
CSE373: Data Structures & Algorithms Lecture 6: Priority Queues Kevin Quinn Fall 2015.
CSE332: Data Abstractions Lecture 5: Binary Heaps, Continued Dan Grossman Spring 2012.
Data StructuresData Structures Priority Queue. Recall Queues FIFO:First-In, First-Out Some contexts where this seems right? Some contexts where some things.
Intro. to Data Structures Chapter 6 Priority Queue (Heap) Veera Muangsin, Dept. of Computer Engineering, Chulalongkorn University 1 Priority Queue.
FALL 2005CENG 213 Data Structures1 Priority Queues (Heaps) Reference: Chapter 7.
AVL Trees and Heaps. AVL Trees So far balancing the tree was done globally Basically every node was involved in the balance operation Tree balancing can.
1 CSE 326: Data Structures Priority Queues (Heaps) Lecture 9: Monday, Jan 27, 2003.
BINARY TREES Objectives Define trees as data structures Define the terms associated with trees Discuss tree traversal algorithms Discuss a binary.
CSE373: Data Structures & Algorithms Lecture 5: Dictionary ADTs; Binary Trees Lauren Milne Summer 2015.
CSE373: Data Structures & Algorithms Lecture 9: Priority Queues and Binary Heaps Linda Shapiro Spring 2016.
CSE 326: Data Structures Lecture #6 Putting Our Heaps Together Steve Wolfman Winter Quarter 2000.
CSE332: Data Abstractions Lecture 4: Priority Queues Dan Grossman Spring 2012.
Heaps, Heap Sort, and Priority Queues. Background: Binary Trees * Has a root at the topmost level * Each node has zero, one or two children * A node that.
TREES From root to leaf. Trees  A tree is a non-linear collection  The elements are in a hierarchical arrangement  The elements are not accessible.
1 Chapter 6: Priority Queues, AKA Heaps. 2 Queues with special properties Consider applications –ordering CPU jobs –searching for the exit in a maze (or.
1 Priority Queues (Heaps). 2 Priority Queues Many applications require that we process records with keys in order, but not necessarily in full sorted.
CSE373: Data Structures & Algorithms Priority Queues
CSE373: Data Structures & Algorithms
CS 201 Data Structures and Algorithms
Source: Muangsin / Weiss
Bohyung Han CSE, POSTECH
CMSC 341: Data Structures Priority Queues – Binary Heaps
CSE 326 Heaps and the Priority Queue ADT
CSE 326: Data Structures Lecture #4 Heaps more Priority Qs
CSE332: Data Abstractions Lecture 5: Binary Heaps, Continued
Instructor: Lilian de Greef Quarter: Summer 2017
CSE 326: Data Structures Lecture #4 Mind Your Priority Queues
CSE 332: Data Structures Priority Queues – Binary Heaps
Instructor: Lilian de Greef Quarter: Summer 2017
Heaps and the Heapsort Heaps and priority queues
CSE 326: Data Structures Priority Queues & Binary Heaps
CSE 332: Data Structures Priority Queues – Binary Heaps Part II
CSE373: Data Structures & Algorithms Lecture 7: Binary Heaps, Continued Dan Grossman Fall 2013.
CSE 326: Data Structures Lecture #3 Mind your Priority Qs
CSE 326: Data Structures Lecture #5 Heaps More
Presentation transcript:

CS221: Algorithms and Data Structures Lecture #3 Mind Your Priority Queues Steve Wolfman 2010W2 1

Learning Goals After this unit, you should be able to: Provide examples of appropriate applications for priority queues and heaps Manipulate data in heaps Describe and apply the Heapify algorithm, and analyze its complexity 2

Today’s Outline Trees, Briefly Priority Queue ADT Heaps –Implementing Priority Queue ADT –Focus on Create: Heapify –Brief introduction to d-Heaps 3

Trees Family Trees Organization Charts Classification trees –what kind of flower is this? –is this mushroom poisonous? File directory structure –folders, subfolders in Windows –directories, subdirectories in UNIX Non-recursive procedure call chains 4

Tree Terminology A E B DF C G IH LJMKN root: leaf: child: parent: sibling: ancestor: descendent: subtree: 5

Tree Terminology Reference A E B DF C G IH LJMKN root: the single node with no parent leaf: a node with no children child: a node pointed to by me parent: the node that points to me sibling: another child of my parent ancestor: my parent or my parent’s ancestor descendent: my child or my child’s descendent subtree: a node and its descendents We sometimes use degenerate versions of these definitions that allow NULL as the empty tree. (This can be very handy for recursive base cases!) 6

More Tree Terminology A E B DF C G IH LJMKN depth: # of edges along path from root to node depth of H? a.0 b.1 c.2 d.3 e.4 7

More Tree Terminology A E B DF C G IH LJMKN height: # of edges along longest path from node to leaf or, for whole tree, from root to leaf height of tree? a.0 b.1 c.2 d.3 e.4 8

More Tree Terminology A E B DF C G IH LJMKN degree: # of children of a node degree of B? a.0 b.1 c.2 d.3 e.4 9

More Tree Terminology A E B DF C G IH LJMKN branching factor: maximum degree of any node in the tree 2 for binary trees, our usual concern; 5 for this weird tree 10

One More Tree Terminology Slide JIH GFED CB A binary: branching factor of 2 (each child has at most 2 children) n-ary: branching factor of n complete: “packed” binary tree; as many nodes as possible for its height nearly complete: complete plus some nodes on the left at the bottom 11

Trees and (Structural) Recursion A tree is either: –the empty tree –a root node and an ordered list of subtrees Trees are a recursively defined structure, so it makes sense to operate on them recursively. 12

Tree Calculations Find the longest undirected path in a tree Might be: – t 13

Tree Calculations Example A E B DF C G IH LJMKN 14

Today’s Outline Trees, Briefly Priority Queue ADT Heaps –Implementing Priority Queue ADT –Focus on Create: Heapify –Brief introduction to d-Heaps 15

Back to Queues Some applications –ordering CPU jobs –simulating events –picking the next search site Problems? –short jobs should go first –earliest (simulated time) events should go first –most promising sites should be searched first 16

Priority Queue ADT Priority Queue operations –create –destroy –insert –deleteMin –isEmpty Priority Queue property: for two elements in the queue, x and y, if x has a lower priority value than y, x will be deleted before y F(7) E(5) D(100) A(4) B(6) insert deleteMin G(9)C(3) 17

Applications of the Priority Q Hold jobs for a printer in order of length Store packets on network routers in order of urgency Simulate events Select symbols for compression Sort numbers Anything greedy: an algorithm that makes the “locally best choice” at each step 18

Naïve Priority Q Data Structures Unsorted list: –insert: –deleteMin: Sorted list: –insert: –deleteMin: 19 a.O(lg n) b.O(n) c.O(n lg n) d.O(n 2 ) e.Something else

Today’s Outline Trees, Briefly Priority Queue ADT Heaps –Implementing Priority Queue ADT –Focus on Create: Heapify –Brief introduction to d-Heaps 20

Binary Heap Priority Q Data Structure Heap-order property –parent’s key is less than or equal to children’s keys –result: minimum is always at the top Structure property –“nearly complete tree” –result: depth is always O(log n); next open location always known WARNING: this has NO SIMILARITY to the “heap” you hear about when people say “things you create with new go on the heap”. Look! Invariants! 21

Nifty Storage Trick Calculations: –child: –parent: –root: –next free: 0 To make calculations simple, I number from 1. How? Don’t use entry 0. (KW uses 0. My version is wasteful of memory... but not of your brain!) 22

DeleteMin ? pqueue.deleteMin() Invariants violated! DOOOM!!! 23

Percolate Down ? ? ?

Finally…

DeleteMin Code Object deleteMin() { assert(!isEmpty()); returnVal = Heap[1]; size--; newPos = percolateDown(1, Heap[size+1]); Heap[newPos] = Heap[size + 1]; return returnVal; } int percolateDown(int hole, Object val) { while (2*hole <= size) { left = 2*hole; right = left + 1; if (right <= size && Heap[right] < Heap[left]) target = right; else target = left; if (Heap[target] < val) { Heap[hole] = Heap[target]; hole = target; } else break; } return hole; } runtime: 26

Insert pqueue.insert(3) 3 Invariant violated! What will we do? 27

Percolate Up

Insert Code void insert(Object o) { assert(!isFull()); size++; newPos = percolateUp(size,o); Heap[newPos] = o; } int percolateUp(int hole, Object val) { while (hole > 1 && val < Heap[hole/2]) Heap[hole] = Heap[hole/2]; hole /= 2; } return hole; } runtime: 29

Today’s Outline Trees, Briefly Priority Queue ADT Heaps –Implementing Priority Queue ADT –Focus on Create: Heapify –Brief introduction to d-Heaps 30

Closer Look at Creating Heaps To create a heap given a list of items: Create an empty heap. For each item: insert into heap. Time complexity? a.O(lg n) b.O(n) c.O(n lg n) d.O(n 2 ) e.None of these , 4, 8, 1, 7, 2 31

A Better BuildHeap Floyd’s Method. Thank you, Floyd pretend it’s a heap and fix the heap-order property! Invariant violated! Where can the order invariant be violated in general? a.Anywhere b.Non-leaves c.Non-roots 32

Build(this)Heap

Finally… runtime: 34

Build(any)Heap This is as many violations as we can get. How do we fix them? Let’s play colouring games! 35

Today’s Outline Trees, Briefly Priority Queue ADT Heaps –Implementing Priority Queue ADT –Focus on Create: Heapify –Brief introduction to d-Heaps 36

Thinking about Binary Heaps Observations –finding a child/parent index is a multiply/divide by two –operations jump widely through the heap –deleteMins look at all (two) children of some nodes –inserts only care about parents of some nodes –inserts are at least as common as deleteMins Realities –division and multiplication by powers of two are fast –looking at one new piece of data sucks in a cache line –with huge data sets, disk accesses dominate 37

Solution: d-Heaps Nodes have (up to) d children Still representable by array Good choices for d: –optimize (non-asymptotic) performance based on ratio of inserts/removes –make d a power of two for efficiency –fit one set of children in a cache line –fit one set of children on a memory page/disk block d-heap mnemonic: d is for degree! (not clear that starting at 1 is useful here  ) 38

d-Heap calculations Calculations in terms of d: –child: –parent: –root: –next free: 39

Coming Up Sorting, sorting, and more sorting! 40