Heaps & Multi-way Search Trees

Slides:



Advertisements
Similar presentations
B-Tree Insert and Delete Demo
Advertisements

COL 106 Shweta Agrawal and Amit Kumar
Advanced Database Discussion B Trees. Motivation for B-Trees So far we have assumed that we can store an entire data structure in main memory What if.
B-Trees. Motivation for B-Trees Index structures for large datasets cannot be stored in main memory Storing it on disk requires different approach to.
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
Version TCSS 342, Winter 2006 Lecture Notes Priority Queues Heaps.
Other time considerations Source: Simon Garrett Modifications by Evan Korth.
Chapter 6: Priority Queues Priority Queues Binary Heaps Mark Allen Weiss: Data Structures and Algorithm Analysis in Java Lydia Sinapova, Simpson College.
Priority Queues  Queues: first-in first-out in printer schedule  Disadvantage: short job, important job need to wait  Priority queue is a data structure.
B-Trees. CSM B-Trees 2 Motivation for B-Trees So far we have assumed that we can store an entire data structure in main memory What if we have so.
Cpt S 223 – Advanced Data Structures Course Review Midterm Exam # 2
Heaps and heapsort COMP171 Fall 2005 Part 2. Sorting III / Slide 2 Heap: array implementation Is it a good idea to store arbitrary.
1 Priority Queues (Heaps)  Sections 6.1 to The Priority Queue ADT  DeleteMin –log N time  Insert –log N time  Other operations –FindMin  Constant.
PRIORITY QUEUES (HEAPS). Queues are a standard mechanism for ordering tasks on a first-come, first-served basis However, some tasks may be more important.
B-Trees. CSM B-Trees 2 Motivation for B-Trees So far we have assumed that we can store an entire data structure in main memory What if we have so.
1 B-Trees & (a,b)-Trees CS 6310: Advanced Data Structures Western Michigan University Presented by: Lawrence Kalisz.
Binary Heap.
Data Structure & Algorithm II.  Delete-min  Building a heap in O(n) time  Heap Sort.
Chapter 21 Binary Heap.
B-Trees. Motivation for B-Trees So far we have assumed that we can store an entire data structure in main memory What if we have so much data that it.
B-Trees. CSM B-Trees 2 Motivation for B-Trees So far we have assumed that we can store an entire data structure in main memory What if we have so.
Cpt S 223 – Advanced Data Structures Priority Queues
1 Heaps (Priority Queues) You are given a set of items A[1..N] We want to find only the smallest or largest (highest priority) item quickly. Examples:
 B-tree is a specialized multiway tree designed especially for use on disk  B-Tree consists of a root node, branch nodes and leaf nodes containing the.
B-TREE. Motivation for B-Trees So far we have assumed that we can store an entire data structure in main memory What if we have so much data that it won’t.
FALL 2005CENG 213 Data Structures1 Priority Queues (Heaps) Reference: Chapter 7.
1 Heap Sort. A Heap is a Binary Tree Height of tree = longest path from root to leaf =  (lgn) A heap is a binary tree satisfying the heap condition:
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 Chapter 6 Heapsort. 2 About this lecture Introduce Heap – Shape Property and Heap Property – Heap Operations Heapsort: Use Heap to Sort Fixing heap.
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.
1 Priority Queues (Heaps). 2 Priority Queues Many applications require that we process records with keys in order, but not necessarily in full sorted.
Priority Queues and Heaps. John Edgar  Define the ADT priority queue  Define the partially ordered property  Define a heap  Implement a heap using.
Heaps and Heap Sort. Sorting III / Slide 2 Background: Complete Binary Trees * A complete binary tree is the tree n Where a node can have 0 (for the leaves)
Priority Queues A priority queue is an ADT where:
"Teachers open the door, but you must enter by yourself. "
CSE373: Data Structures & Algorithms Priority Queues
School of Computing Clemson University Fall, 2012
B-Trees B-Trees.
Heaps (8.3) CSE 2011 Winter May 2018.
B-Trees B-Trees.
B-Trees B-Trees.
Priority Queues and Heaps
Source: Muangsin / Weiss
Heap Sort Example Qamar Abbas.
Heaps, Heap Sort, and Priority Queues
Priority Queues (Heaps)
Chapter 22 : Binary Trees, AVL Trees, and Priority Queues
ADT Heap data structure
original list {67, 33,49, 21, 25, 94} pass { } {67 94}
CMSC 341: Data Structures Priority Queues – Binary Heaps
Multi-Way Search Trees
B-Trees.
Heaps and the Heapsort Heaps and priority queues
Other time considerations
CS Data Structure: Heaps.
Priority Queues (Chapter 6.6):
CSIT 402 Data Structures II With thanks to TK Prasad
B-TREE ________________________________________________________
Topic 5: Heap data structure heap sort Priority queue
CSC 380: Design and Analysis of Algorithms
Priority Queues (Heaps)
Priority Queues CSE 373 Data Structures.
CSE 373, Copyright S. Tanimoto, 2002 Priority Queues -
B-Trees.
Data Structures and Algorithm Analysis Priority Queues (Heaps)
B-Trees.
Priority Queues Binary Heaps
Priority Queues (Heaps)
Presentation transcript:

Heaps & Multi-way Search Trees Prepared By Keshav Tambre Dept. Of IT Data Structures

To understand basic concepts of heaps, types of heaps & applications. Unit Objectives: To understand basic concepts of heaps, types of heaps & applications. To understand implementation of different heaps. To understand various indexing techniques. To understand difference between B trees & B+ trees. Dept. Of IT Data Structures

Binary Heap A priority queue data structure Cpt S 223 Binary Heap A priority queue data structure A binary heap is a binary tree with two properties Heap Structure property Heap Order property Dept. Of IT Data Structures Washington State University

Structure Property A binary heap is a complete binary tree Cpt S 223 Structure Property A binary heap is a complete binary tree Each level (except possibly the bottom most level) is completely filled The bottom most level may be partially filled (from left to right) Height of a complete binary tree with N elements is 4 Dept. Of IT Data Structures Washington State University

Heap-order Property Heap-order property (for a “MinHeap”) Cpt S 223 Heap-order Property Heap-order property (for a “MinHeap”) For every node X, key(parent(X)) ≤ key(X) Except root node, which has no parent Thus, minimum key always at root Alternatively, for a “MaxHeap”, always keep the maximum key at the root Insert and deleteMin must maintain heap-order property Dept. Of IT Data Structures Washington State University

Heap Order Property Duplicates are allowed Minimum element  Cpt S 223 Dept. Of IT Data Structures Washington State University

Binary Heap Example N=10 Every level (except last) saturated Cpt S 223 Binary Heap Example N=10 Every level (except last) saturated Array representation: Dept. Of IT Data Structures Washington State University

Implementing Complete Binary Trees as Arrays Cpt S 223 Implementing Complete Binary Trees as Arrays Given element at position i in the array Left child(i) = at position 2i Right child(i) = at position 2i + 1 Parent(i) = at position i 2i 2i + 1 i/2 Dept. Of IT Data Structures Washington State University

Cpt S 223 Heap Insert Insert new element into the heap at the next available slot (“hole”) According to maintaining a complete binary tree Then, “percolate” the element up the heap while heap-order property not satisfied Dept. Of IT Data Structures Washington State University

Heap Insert: Example Percolating Up Insert 14: Cpt S 223 hole Dept. Of IT Data Structures Washington State University

Heap Insert: Example Percolating Up (1) 14 vs. 31 Insert 14: 11 Cpt S 223 Heap Insert: Example Percolating Up (1) 14 vs. 31 Insert 14: 14 14 hole 11 Dept. Of IT Data Structures Washington State University

Heap Insert: Example Percolating Up (1) 14 vs. 31 Insert 14: (2) Cpt S 223 Heap Insert: Example Percolating Up (1) 14 vs. 31 Insert 14: 14 14 hole (2) 14 vs. 21 14 12 Dept. Of IT Data Structures Washington State University

Heap Insert: Example Percolating Up (1) 14 vs. 31 Insert 14: (2) Cpt S 223 Heap Insert: Example Percolating Up (1) 14 vs. 31 Insert 14: 14 hole (2) 14 vs. 21 Heap order prop (3) 14 vs. 13 14 Structure prop Path of percolation up 13 Dept. Of IT Data Structures Washington State University

Heap DeleteMin Minimum element is always at the root Cpt S 223 Heap DeleteMin Minimum element is always at the root Heap decreases by one in size Move last element into hole at root Percolate down while heap-order property not satisfied Dept. Of IT Data Structures Washington State University

Heap DeleteMin: Example Cpt S 223 Heap DeleteMin: Example Percolating down… Make this position empty Dept. Of IT Data Structures Washington State University

Heap DeleteMin: Example Cpt S 223 Heap DeleteMin: Example Percolating down… Copy 31 temporarily here and move it down Make this position empty Is 31 > min(14,16)? Yes - swap 31 with min(14,16) 16 Dept. Of IT Data Structures Washington State University

Heap DeleteMin: Example Cpt S 223 Heap DeleteMin: Example Percolating down… 31 Is 31 > min(19,21)? Yes - swap 31 with min(19,21) Dept. Of IT Data Structures Washington State University

Heap DeleteMin: Example Cpt S 223 Heap DeleteMin: Example Percolating down… 31 31 Is 31 > min(65,26)? Yes - swap 31 with min(65,26) Is 31 > min(19,21)? Yes - swap 31 with min(19,21) Percolating down… 18 Dept. Of IT Data Structures Washington State University

Heap DeleteMin: Example Cpt S 223 Heap DeleteMin: Example Percolating down… 31 Percolating down… Dept. Of IT Data Structures Washington State University

Heap DeleteMin: Example Cpt S 223 Heap DeleteMin: Example Percolating down… 31 Heap order prop Structure prop 20 Dept. Of IT Data Structures Washington State University

Building a Heap Construct heap from initial set of N items Method 1 Cpt S 223 Building a Heap Construct heap from initial set of N items Method 1 Perform N inserts O(N log2 N) worst-case Method 2 (use buildHeap()) Randomly populate initial heap with structure property Perform a percolate-down from each internal node (H[size/2] to H[1]) To take care of heap order property Dept. Of IT Data Structures Washington State University

Binary Heap Example: Data arrives to be heaped in the order: 54, 87, 27, 67, 19, 31, 29, 18, 32 Dept. Of IT Data Structures

Binary Heap 54, 87, 27, 67, 19, 31, 29, 18, 32 Method 1: 54 87 54 87 54 27 54 87 87 54 27 67 87 67 27 54 87 67 27 54 19

Binary Heap 54, 87, 27, 67, 19, 31, 29, 18, 32 27 87 67 54 19 27 87 67 54 19 31

Binary Heap 54, 87, 27, 67, 19, 31, 29, 18, 32 31 87 67 54 19 27 29 31 87 67 54 19 27 29 18 32

BuildHeap Example Method 2: Cpt S 223 BuildHeap Example Input: { 150, 80, 40, 30,10, 70, 110, 100, 20, 90, 60, 50, 120, 140, 130 } Method 2: Leaves are all valid heaps (implicitly) So, let us look at each internal node, from bottom to top, and fix if necessary Arbitrarily assign elements to heap nodes Structure property satisfied Heap order property violated Leaves are all valid heaps (implicit) Dept. Of IT Data Structures Washington State University

BuildHeap Example Swap with left child Nothing to do Cpt S 223 BuildHeap Example Swap with left child Nothing to do Randomly initialized heap Structure property satisfied Heap order property violated Leaves are all valid heaps (implicit) 27 Dept. Of IT Data Structures Washington State University

BuildHeap Example Swap with right child Nothing to do Cpt S 223 BuildHeap Example Swap with right child Nothing to do Dotted lines show path of percolating down 28 Dept. Of IT Data Structures Washington State University

BuildHeap Example Swap with right child & then with 60 Nothing to do Cpt S 223 BuildHeap Example Swap with right child & then with 60 Nothing to do Dotted lines show path of percolating down Dept. Of IT Data Structures Washington State University

BuildHeap Example Swap path Final Heap Cpt S 223 BuildHeap Example Swap path Final Heap Dotted lines show path of percolating down Dept. Of IT Data Structures Washington State University

Applications of Heaps. Operating system scheduling / Priority Queue. Cpt S 223 Applications of Heaps. Operating system scheduling / Priority Queue. Process jobs by priority Graph algorithms. Find shortest path Selection Problem. Heap Sort. Dept. Of IT Data Structures Washington State University

An Application: The Selection Problem Cpt S 223 An Application: The Selection Problem Given a list of n elements, find the kth smallest element Algorithm 1: Sort the list Pick the kth element A better algorithm: Use a binary heap (minheap) Dept. Of IT Data Structures Washington State University

Selection using a MinHeap Cpt S 223 Selection using a MinHeap Input: n elements Algorithm: buildHeap(n) Perform k deleteMin() operations Report the kth deleteMin output Dept. Of IT Data Structures Washington State University

Heapsort (1) Build a binary heap of N elements the minimum element is at the top of the heap (2)   Perform N DeleteMin operations the elements are extracted in sorted order Dept. Of IT Data Structures

Build Heap Input: N elements Output: A heap with heap-order property Method 1: obviously, N successive insertions Complexity: O(NlogN) worst case Dept. Of IT Data Structures

Heapsort – Running Time Analysis (1) Build a binary heap of N elements repeatedly insert N elements  O(N log N) time (2) Perform N DeleteMin operations Each DeleteMin operation takes O(log N)  O(N log N) Total time complexity: O(N log N) Dept. Of IT Data Structures

Heapsort Observation: after each deleteMin, the size of heap shrinks by 1 We can use the last cell just freed up to store the element that was just deleted  after the last deleteMin, the array will contain the elements in decreasing sorted order To sort the elements in the decreasing order, use a min heap To sort the elements in the increasing order, use a max heap Dept. Of IT Data Structures

Heap-Sort Example Sort in increasing order: use max heap Delete 97 Dept. Of IT Data Structures

Another Heapsort Example Delete 16 Delete 14 Delete 10 Delete 9 Delete 8 Dept. Of IT Data Structures

Example (cont’d) Dept. Of IT Data Structures

Other Types of Heaps Binomial Heaps d-Heaps Leftist Heaps Skew Heaps Cpt S 223 Other Types of Heaps Binomial Heaps d-Heaps Leftist Heaps Skew Heaps Fibonacci Heaps Dept. Of IT Data Structures Washington State University

B-Trees Dept. Of IT Data Structures

Definition of a B-tree A B-tree of order m is an m-way tree (i.e., a tree where each node may have up to m children) in which: 1. the number of keys in each non-leaf node is one less than the number of its children and these keys partition the keys in the children in the fashion of a search tree 2. all leaves are on the same level 3. all non-leaf nodes except the root have at least m / 2 children 4. the root is either a leaf node, or it has from two to m children 5. a leaf node contains no more than m – 1 keys The number m should always be odd Dept. Of IT Data Structures

An example B-Tree A B-tree of order 5 containing 26 items 26 6 12 42 51 62 1 2 4 7 8 13 15 18 25 27 29 45 46 48 53 55 60 64 70 90 Note that all the leaves are at the same level Dept. Of IT Data Structures

Constructing a B-tree Suppose we start with an empty B-tree and keys arrive in the following order:1 12 8 2 25 5 14 28 17 7 52 16 48 68 3 26 29 53 55 45 We want to construct a B-tree of order 5 The first four items go into the root: To put the fifth item in the root would violate condition 5 Therefore, when 25 arrives, pick the middle key to make a new root 1 2 8 12 Dept. Of IT Data Structures

Constructing a B-tree (contd 8 1 2 12 25 6, 14, 28 get added to the leaf nodes: 1 2 8 12 14 6 25 28 Dept. Of IT Data Structures

7, 52, 16, 48 get added to the leaf nodes Constructing a B-tree (contd.) 1 12 8 2 25 5 14 28 17 7 52 16 48 68 3 26 29 53 55 45 Adding 17 to the right leaf node would over-fill it, so we take the middle key, promote it (to the root) and split the leaf 8 17 1 2 6 12 14 25 28 7, 52, 16, 48 get added to the leaf nodes 8 17 12 14 25 28 1 2 6 16 48 52 7 Dept. Of IT Data Structures

Adding 45 causes a split of Constructing a B-tree (contd.) 1 12 8 2 25 5 14 28 17 7 52 16 48 68 3 26 29 53 55 45 Adding 68 causes us to split the right most leaf, promoting 48 to the root, and adding 3 causes us to split the left most leaf, promoting 3 to the root; 26, 29, 53, 55 then go into the leaves 3 8 17 48 1 2 6 7 12 14 16 25 26 28 29 52 53 55 68 Adding 45 causes a split of 25 26 28 29 and promoting 28 to the root then causes the root to split Dept. Of IT Data Structures

Constructing a B-tree (contd 17 3 8 28 48 1 2 6 7 12 14 16 25 26 29 45 52 53 55 68 Dept. Of IT Data Structures

Inserting into a B-Tree If Attempt to insert the new key into a leaf this would result in that leaf becoming too big, split the leaf into two, promoting the middle key to the leaf’s parent If this would result in the parent becoming too big, split the parent into two, promoting the middle key This strategy might have to be repeated all the way to the top If necessary, the root is split in two and the middle key is promoted to a new root, making the tree one level higher Dept. Of IT Data Structures

Exercise in Inserting a B-Tree Insert the following keys to a 5-way B-tree: 3, 7, 9, 23, 45, 1, 5, 14, 25, 24, 13, 11, 8, 19, 4, 31, 35, 56 Dept. Of IT Data Structures

Removal from a B-tree During insertion, the key always goes into a leaf. For deletion we wish to remove from a leaf. There are three possible ways we can do this: 1 - If the key is already in a leaf node, and removing it doesn’t cause that leaf node to have too few keys, then simply remove the key to be deleted. 2 - If the key is not in a leaf then it is guaranteed (by the nature of a B-tree) that its predecessor or successor will be in a leaf -- in this case we can delete the key and promote the predecessor or successor key to the non-leaf deleted key’s position. Dept. Of IT Data Structures

Removal from a B-tree (2) If (1) or (2) lead to a leaf node containing less than the minimum number of keys then we have to look at the siblings immediately adjacent to the leaf in question: 3: if one of them has more than the min. number of keys then we can promote one of its keys to the parent and take the parent key into our lacking leaf 4: if neither of them has more than the min. number of keys then the lacking leaf and one of its neighbours can be combined with their shared parent (the opposite of promoting a key) and the new leaf will have the correct number of keys; if this step leave the parent with too few keys then we repeat the process up to the root itself, if required Dept. Of IT Data Structures

Type #1: Simple leaf deletion Assuming a 5-way B-Tree, as before... 12 29 52 2 7 9 15 22 56 69 72 31 43 Delete 2: Since there are enough keys in the node, just delete it Note when printed: this slide is animated Dept. Of IT Data Structures

Type #2: Simple non-leaf deletion 12 29 52 7 9 15 22 56 69 72 31 43 56 Delete 52 Borrow the predecessor or (in this case) successor Note when printed: this slide is animated Dept. Of IT Data Structures

Type #4: Too few keys in node and its siblings Join back together 12 29 56 7 9 15 22 69 72 31 43 Too few keys! Delete 72 Note when printed: this slide is animated Dept. Of IT Data Structures

Type #4: Too few keys in node and its siblings 12 29 7 9 15 22 69 56 31 43 Note when printed: this slide is animated Dept. Of IT Data Structures

Type #3: Enough siblings 12 29 7 9 15 22 69 56 31 43 Demote root key and promote leaf key Delete 22 Note when printed: this slide is animated Dept. Of IT Data Structures

Type #3: Enough siblings 12 31 69 56 43 7 9 15 29 Note when printed: this slide is animated Dept. Of IT Data Structures

Exercise in Removal from a B-Tree Given 5-way B-tree created by these data (last exercise): 3, 7, 9, 23, 45, 1, 5, 14, 25, 24, 13, 11, 8, 19, 4, 31, 35, 56 Add these further keys: 2, 6,12 Delete these keys: 4, 5, 7, 3, 14 Dept. Of IT Data Structures