Presentation is loading. Please wait.

Presentation is loading. Please wait.

INTRO TO HEAP & Adding and Removing a NODE Presented to: Sir AHSAN RAZA Presented by: SHAH RUKH Roll #07-22 Semester BIT 3 rd Session 2007—2011 Department.

Similar presentations


Presentation on theme: "INTRO TO HEAP & Adding and Removing a NODE Presented to: Sir AHSAN RAZA Presented by: SHAH RUKH Roll #07-22 Semester BIT 3 rd Session 2007—2011 Department."— Presentation transcript:

1 INTRO TO HEAP & Adding and Removing a NODE Presented to: Sir AHSAN RAZA Presented by: SHAH RUKH Roll #07-22 Semester BIT 3 rd Session 2007—2011 Department of Computer Science, B.Z.University Multan

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

3 Binary TREE  It has a Root and has two CHILDREN.  Left child or left subtree.  Right child or right subtree.  Every child has its two children (left & right) then this child is called a node.  If a node has no children then this node is said to be as a leaf.

4 Heaps A heap is a certain kind of complete binary tree. When a complete binary tree is built, its first node must be the root. When a complete binary tree is built, its first node must be the root. Root

5 Heaps Complete binary tree. Left child of the root The second node is always the left child of the root. The second node is always the left child of the root.

6 Heaps Complete binary tree. Right child of the root The third node is always the right child of the root. The third node is always the right child of the root.

7 Heaps Complete binary tree. The next nodes always fill the next. level from left-to-right. The next nodes always fill the next. level from left-to-right.

8 Heaps Complete binary tree. The next nodes always fill the next level from left-to-right. The next nodes always fill the next level from left-to-right.

9 Heaps Complete binary tree. The next nodes always fill the next level from left-to-right. The next nodes always fill the next level from left-to-right.

10 Heaps Complete binary tree. The next nodes always fill the next level from left-to-right. The next nodes always fill the next level from left-to-right.

11 Heaps Complete binary tree.

12 Heaps A heap is a certain kind of complete binary tree. Each node in a heap contains a key that can be compared to other nodes' keys. Each node in a heap contains a key that can be compared to other nodes' keys. 19 4222127 23 45 35

13 Heaps A heap is a certain kind of complete binary tree. The "heap property" requires that each node's key is >= the keys of its children The "heap property" requires that each node's key is >= the keys of its children 19 4222127 23 45 35

14 What it is not: It is not a BST In a binary search tree, the entries of the nodes can be compared with a strict weak ordering. Two rules are followed for every node n: The entry in node n is NEVER less than an entry in its left subtree The entry in the node n is less than every entry in its right subtree. BST is not necessarily a complete tree

15 What it is: Heap Definition A heap is a binary tree where the entries of the nodes can be compared with the less than operator of a strict weak ordering. In addition, two rules are followed: The entry contained by the node is NEVER less than the entries of the node ’ s children The tree is a COMPLETE tree.

16 Application : Priority Queues A priority queue is a container class that allows entries to be retrieved according to some specific priority levels The highest priority entry is removed first If there are several entries with equally high priorities, then the priority queue ’ s implementation determines which will come out first (e.g. FIFO) Heap is suitable for a priority queue

17 The Priority Queue ADT with Heaps The entry with the highest priority is always at the root node Focus on two priority queue operations adding a new entry remove the entry with the highest priority In both cases, we must ensure the tree structure remains to be a heap we are going to work on a conceptual heap without worrying about the precise implementation

18 Adding a Node to a Heap Put the new node in the next available spot. Push the new node upward, swapping with its parent until the new node reaches an acceptable location. 19 4222127 23 45 35 42

19 Adding a Node to a Heap Put the new node in the next available spot. Push the new node upward, swapping with its parent until the new node reaches an acceptable location. 19 4222142 23 45 35 27

20 Adding a Node to a Heap Put the new node in the next available spot. Push the new node upward, swapping with its parent until the new node reaches an acceptable location. 19 4222135 23 45 42 27

21 Adding a Node to a Heap The parent has a key that is >= new node, or The node reaches the root. The process of pushing the new node upward is called reheapification upward. 19 4222135 23 45 42 27 Note: we need to easily go from child to parent as well as parent to child.

22 Removing the Top of a Heap Move the last node onto the root. 19 4222135 23 45 42 27

23 Removing the Top of a Heap Move the last node onto the root. 19 4222135 23 27 42

24 Removing the Top of a Heap Move the last node onto the root. Push the out-of-place node downward, swapping with its larger child until the new node reaches an acceptable location. 19 4222135 23 27 42

25 Removing the Top of a Heap Move the last node onto the root. Push the out-of-place node downward, swapping with its larger child until the new node reaches an acceptable location. 19 4222135 23 42 27

26 Removing the Top of a Heap Move the last node onto the root. Push the out-of-place node downward, swapping with its larger child until the new node reaches an acceptable location. 19 4222127 23 42 35

27 Removing the Top of a Heap The children all have keys <= the out-of-place node, or The node reaches the leaf. The process of pushing the new node downward is called reheapification downward. 19 4222127 23 42 35

28 Priority Queues Revisited A priority queue is a container class that allows entries to be retrieved according to some specific priority levels The highest priority entry is removed first If there are several entries with equally high priorities, then the priority queue ’ s implementation determines which will come out first (e.g. FIFO) Heap is suitable for a priority queue

29 Adding a Node: same priority Put the new node in the next available spot. Push the new node upward, swapping with its parent until the new node reaches an acceptable location. 19 4222127 23 45 35 45*

30 Adding a Node : same priority Put the new node in the next available spot. Push the new node upward, swapping with its parent until the new node reaches an acceptable location. 19 4222145* 23 45 35 27

31 Adding a Node : same priority Put the new node in the next available spot. Push the new node upward, swapping with its parent until the new node reaches an acceptable location. 19 4222135 23 45 45* 27


Download ppt "INTRO TO HEAP & Adding and Removing a NODE Presented to: Sir AHSAN RAZA Presented by: SHAH RUKH Roll #07-22 Semester BIT 3 rd Session 2007—2011 Department."

Similar presentations


Ads by Google