Heaps. 2/13/2006 Heaps 1

Similar documents
Heaps Goodrich, Tamassia. Heaps 1

Heaps 2. Recall Priority Queue ADT. Heaps 3/19/14

Priority Queues and Heaps. Heaps and Priority Queues 1

HEAPS: IMPLEMENTING EFFICIENT PRIORITY QUEUES

Priority Queue ADT ( 7.1) Heaps and Priority Queues 2. Comparator ADT ( 7.1.4) Total Order Relation. Using Comparators in C++

Height of a Heap. Heaps. 1. Insertion into a Heap. Heaps and Priority Queues. The insertion algorithm consists of three steps

Chapter 2: Basic Data Structures

Heaps and Priority Queues

Priority Queues. Outline. COMP9024: Data Structures and Algorithms. Priority Queue ADT. Total Order Relations. Entry ADT

Sorting. Outline. Sorting with a priority queue Selection-sort Insertion-sort Heap Sort Quick Sort

Data Structures and Algorithms " Priority Queues!

Priority Queues. Reading: 7.1, 7.2

CH 8. HEAPS AND PRIORITY QUEUES

CH. 8 PRIORITY QUEUES AND HEAPS

Describe how to implement deque ADT using two stacks as the only instance variables. What are the running times of the methods

Stores a collection of elements each with an associated key value

Priority Queues & Heaps. Chapter 9

Data Structures Lecture 7

Data Structures and Algorithms

Elementary Data Structures 2

Priority Queues and Heaps. More Data Structures. Priority Queue ADT ( 2.4.1) Total Order Relation. Sorting with a Priority Queue ( 2.4.

CSED233: Data Structures (2017F) Lecture9: Priority Queues and Heaps

Priority queues. Priority queues. Priority queue operations

Heaps Outline and Required Reading: Heaps ( 7.3) COSC 2011, Fall 2003, Section A Instructor: N. Vlajic

Algorithms and Data Structures

Priority Queues & Heaps. CS16: Introduction to Data Structures & Algorithms Spring 2019

In a postorder traversal, a node is visited after its descendants Application: compute space used by files in a directory and its subdirectories 9 1

Priority queues. Priority queues. Priority queue operations

Data Structures and Algorithms

Heaps. Presentation for use with the textbook Algorithm Design and Applications, by M. T. Goodrich and R. Tamassia, Wiley, 2015

CS 240 Fall Mike Lam, Professor. Priority Queues and Heaps

Programming II (CS300)

(2,4) Trees. 2/22/2006 (2,4) Trees 1

Priority Queues. Lecture15: Heaps. Priority Queue ADT. Sequence based Priority Queue

Programming II (CS300)

Definition of a Heap. Heaps. Priority Queues. Example. Implementation using a heap. Heap ADT

Winter 2016 COMP-250: Introduction to Computer Science. Lecture 20, March 24, 2016

DataStruct 8. Heaps and Priority Queues

CS350: Data Structures Heaps and Priority Queues

(2,4) Trees Goodrich, Tamassia (2,4) Trees 1

Algorithms and Theory of Computation. Lecture 7: Priority Queue

Multi-way Search Trees. (Multi-way Search Trees) Data Structures and Programming Spring / 25

Adding a Node to (Min) Heap. Lecture16: Heap Sort. Priority Queue Sort. Delete a Node from (Min) Heap. Step 1: Add node at the end

Overview of Presentation. Heapsort. Heap Properties. What is Heap? Building a Heap. Two Basic Procedure on Heap

Programming II (CS300)

Heaps and Priority Queues

Sorting and Searching

Priority Queues and Binary Heaps

Trees & Tree-Based Data Structures. Part 4: Heaps. Definition. Example. Properties. Example Min-Heap. Definition

Binary Search Trees > = 2014 Goodrich, Tamassia, Goldwasser. Binary Search Trees 1

Topics on the Midterm

Module 2: Priority Queues

COMP250: Priority queue ADT, Heaps. Lecture 23 Jérôme Waldispühl School of Computer Science McGill University

Module 2: Priority Queues

13.4 Deletion in red-black trees

Module 2: Priority Queues

Sorting and Searching

CS2 Algorithms and Data Structures Note 6

CSCI 136 Data Structures & Advanced Programming. Lecture 22 Fall 2018 Instructor: Bills

Learning Goals. CS221: Algorithms and Data Structures Lecture #3 Mind Your Priority Queues. Today s Outline. Back to Queues. Priority Queue ADT

Data Structures and Algorithms for Engineers

Priority Queues. T. M. Murali. January 23, T. M. Murali January 23, 2008 Priority Queues

Priority queue ADT Heaps. Lecture 21

Priority Queues. T. M. Murali. January 29, 2009

Search Trees - 2. Venkatanatha Sarma Y. Lecture delivered by: Assistant Professor MSRSAS-Bangalore. M.S Ramaiah School of Advanced Studies - Bangalore

Properties of a heap (represented by an array A)

Binary Trees, Binary Search Trees

Heap: A binary heap is a complete binary tree in which each, node other than root is smaller than its parent. Heap example: Fig 1. NPTEL IIT Guwahati

Round 3: Trees. Tommi Junttila. Aalto University School of Science Department of Computer Science. CS-A1140 Data Structures and Algorithms Autumn 2017

Priority Queues and Heaps. Heaps of fun, for everyone!

CS165: Priority Queues, Heaps

Priority Queues. 1 Introduction. 2 Naïve Implementations. CSci 335 Software Design and Analysis III Chapter 6 Priority Queues. Prof.

CS711008Z Algorithm Design and Analysis

CS711008Z Algorithm Design and Analysis

COMP 250 Fall priority queues, heaps 1 Nov. 9, 2018

Priority Queues. T. M. Murali. January 26, T. M. Murali January 26, 2016 Priority Queues

Binary Heaps in Dynamic Arrays

Huffman Coding. Version of October 13, Version of October 13, 2014 Huffman Coding 1 / 27

CS 10: Problem solving via Object Oriented Programming. Priori9zing 2

Chapter 6 Heapsort 1

Priority Queues Heaps Heapsort

CE 221 Data Structures and Algorithms

Lecture 11: Multiway and (2,4) Trees. Courtesy to Goodrich, Tamassia and Olga Veksler

Administration CSE 326: Data Structures

Heaps. A heap is a certain kind of complete binary tree.

Binary Heaps. COL 106 Shweta Agrawal and Amit Kumar

Readings. Priority Queue ADT. FindMin Problem. Priority Queues & Binary Heaps. List implementation of a Priority Queue

Priority Queues, Binary Heaps, and Heapsort

Heapsort. Heap data structure

Search Trees - 1 Venkatanatha Sarma Y

Trees. A tree is a directed graph with the property

Partha Sarathi Manal

9. Heap : Priority Queue

13.4 Deletion in red-black trees

Dictionaries. Priority Queues

CS2 Algorithms and Data Structures Note 6

Heaps. Heaps Priority Queue Revisit HeapSort

Dictionaries. 2/17/2006 Dictionaries 1

Data Structures Lesson 9

CSCI2100B Data Structures Heaps

Transcription:

Heaps /13/00 Heaps 1

Outline and Reading What is a heap ( 8.3.1) Height of a heap ( 8.3.) Insertion ( 8.3.3) Removal ( 8.3.3) Heap-sort ( 8.3.) Arraylist-based implementation ( 8.3.) Bottom-up construction ( 8.3.) /13/00 Heaps

What is a heap? A heap is a binary tree storing keys at its internal nodes and satisfying the following properties: Heap-Order: for every internal node v other than the root, key(v) key(parent(v)). (In other words, every internal node in the graph stores a key greater than or equal to its parent s key.) Complete Binary Tree: let h be the height of the heap for i = 0,, h 1, there are i nodes of depth i at depth h 1, the internal nodes are to the left of the external nodes The last node of a heap is the rightmost internal node of depth h 1 last node /13/00 Heaps 3

Height of a Heap Theorem: A heap storing n keys has height O(log n) Proof: (we apply the complete binary tree property) Let h be the height of a heap storing n keys Since there are i keys at depth i = 0,, h and at least one key at depth h 1, we have n 1 + + + + h + 1 Thus, n h 1, i.e., h log n + 1 depth 0 1 h h 1 keys 1 h 1 /13/00 Heaps

Heaps and Priority Queues We can use a heap to implement a priority queue We store a (key, element) item at each internal node We keep track of the position of the last node For simplicity, we show only the keys in the pictures (, Sue) (, Pat) (, Mark) (, Jeff) (, Anna) /13/00 Heaps

Insertion into a Heap Method insertitem of the priority queue ADT corresponds to the insertion of a key k to the heap The insertion algorithm consists of three steps Find the insertion node z (the new last node) Store k at z and expand z into an internal node Restore the heap-order property (discussed next) 1 z insertion node z /13/00 Heaps

Upheap After the insertion of a new key k, the heap-order property may be violated Algorithm upheap restores the heap-order property by swapping k along an upward path from the insertion node Upheap terminates when the key k reaches the root or a node whose parent has a key smaller than or equal to k Since a heap has height O(log n), upheap runs in O(log n) time 1 z 1 z /13/00 Heaps

Removal from a Heap Method removemin of the priority queue ADT corresponds to the removal of the root key from the heap The removal algorithm consists of three steps Swap the root key with the key of the last node w Compress w and its children into a single leaf node Restore the heap-order property (discussed next) w w last node /13/00 Heaps 8

Downheap After replacing the root key with the key k of the last node, the heap-order property may be violated Algorithm downheap restores the heap-order property by swapping key k along a downward path from the root Downheap terminates when key k reaches a leaf or a node whose children have keys greater than or equal to k Since a heap has height O(log n), downheap runs in O(log n) time w w /13/00 Heaps

Updating the Last Node The insertion node can be found by traversing a path of O(log n) nodes Start with the current last node Go up until a left child or the root is reached If a left child is reached, go to its sibling (the corresponding right child) Go down left until a leaf is reached Similar algorithm for updating the last node after a removal /13/00

Heap-Sort Consider a priority queue with n items implemented by means of a heap the space used is O(n) methods insert and removemin take O(log n) time methods size, isempty, minkey, and minelement take time O(1) time Using a heap-based priority queue, we can sort a sequence of n elements in O(n log n) time The resulting algorithm is called heap-sort Heap-sort is much faster than quadratic sorting algorithms, such as insertion-sort and selection-sort /13/00

Vector-based Implementation We can represent a heap with n keys by means of a vector of length n + 1 For the node at rank i the left child is at rank i the right child is at rank i + 1 Links between nodes are not explicitly stored The leaves are not represented The cell of at rank 0 is not used Operation insertitem corresponds to inserting at rank n + 1 Operation removemin corresponds to removing at rank n Yields in-place heap-sort /13/00 0 1 3

Merging Two Heaps We are given two heaps and a key k 8 3 We create a new heap with the root node storing k and with the two heaps as subtrees We perform downheap to restore the heaporder property 8 3 3 8 /13/00

Bottom-up Heap Construction We can construct a heap storing n given keys in using a bottom-up construction with log n phases In phase i, pairs of heaps with i 1 keys are merged into heaps with i+1 1 keys i 1 i 1 i+1 1 /13/00

Example 1 1 1 3 0 11 1 1 1 3 0 /13/00

Example (contd.) 11 1 1 1 3 0 1 0 1 1 11 3 /13/00

Example (contd.) 8 1 0 1 1 11 3 1 8 0 1 1 11 3 /13/00

Example (end) 10 1 8 0 1 1 11 3 1 8 0 1 10 1 11 3 /13/00

Analysis We visualize the worst-case time of a downheap with a proxy path that goes first right and then repeatedly goes left until the bottom of the heap (this path may differ from the actual downheap path) Since each node is traversed by at most two proxy paths, the total number of nodes of the proxy paths is O(n) Thus, bottom-up heap construction runs in O(n) time Bottom-up heap construction is faster than n successive insertions and speeds up the first phase of heap-sort /13/00