priority queues heaps
play

Priority Queues & Heaps CS16: Introduction to Data Structures - PowerPoint PPT Presentation

Priority Queues & Heaps CS16: Introduction to Data Structures & Algorithms Spring 2020 Outline Priority Queues Motivation ADT Implementation Heaps insert( ) and upheap( ) removeMin( ) and downheap( )


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

  2. Outline ‣ Priority Queues ‣ Motivation ‣ ADT ‣ Implementation ‣ Heaps ‣ insert( ) and upheap( ) ‣ removeMin( ) and downheap( )

  3. Motivation ‣ Priority queues store items with various priorities ‣ Priority queues are everywhere ‣ Plane departures: some flights have higher priority than others ‣ Bandwidth management: real-time traffic like Skype transmitted first ‣ Student dorm room allocations ‣ … 3

  4. Priority Queue ADT ‣ Stores key/element pairs ‣ key determines position in queue ‣ insert (key, element) : ‣ inserts element with key ‣ removeMin ( ) : ‣ removes pair w/ smallest key and returns element

  5. Priority Queue Implementations 2 min Activity #1 5

  6. Priority Queue Implementations 2 min Activity #1 6

  7. Priority Queue Implementations 1 min Activity #1 7

  8. Priority Queue Implementations 0 min Activity #1 8

  9. Priority Queue Implementation Implementation insert removeMin Unsorted Array O(1) O(n) Sorted Array O(n) O(1) Unsorted Linked List O(1) O(n) Sorted Linked List O(n) O(1) Hash Table O(1) O(n) Heap O(log n) O(log n) 9

  10. What is a Heap? ‣ Data structure that implements priority queue ‣ Heaps can be implemented with ‣ Tree 2 ‣ Array 5 6 ‣ Tree-based heap 9 7 10

  11. Heap Properties ‣ Binary tree ‣ each node has at most 2 children ‣ Each node has a priority (key) ‣ Heap has an order ‣ min-heap: n.parent.key ≤ n.key ‣ max-heap: n.parent.key ≥ n.key ‣ Left-complete ‣ Height of O(log n) 11

  12. Heap Properties ‣ To implement priority queue ‣ insert key/element pair at each node (1, Tsunade) (3, Danzo) (5, Kakashi) (7, Sakura) (9, Naruto) 12

  13. Heap: insert ‣ Need to keep track of “insertion node” ‣ leaf where we will insert new node… ‣ …so we can keep heap left-complete 2 5 6 9 7 insertion node 13

  14. Heap: insert ‣ Ex: insert( 1 ) ‣ replace insertion node w/ new node Heap order 2 violated! 5 6 9 7 1 14

  15. Heap: upheap ‣ Repair heap: swap new element up tree until keys are sorted ‣ First swap fixes everything below new location ‣ since every node below 6 ’s old location has to be at least 6 … ‣ …they must be at least 1 2 5 1 9 7 6 15

  16. Heap: upheap ‣ One more swap since 1 ≤ 2 ‣ Now left-completeness and order are satisfied 1 5 2 9 7 6 16

  17. Heap: insert 2 min Activity #1 17

  18. Heap: insert 2 min Activity #2 18

  19. Heap: insert 1 min Activity #1 19

  20. Heap: insert 0 min Activity #1 20

  21. Heap: upheap Summary ‣ After inserting a key k , order may be violated ‣ upheap restores order by ‣ swapping key upward from insertion node ‣ terminates when either the root is reached… ‣ …or some node whose parent has key less or equal than k ‣ Heap insertion has runtime ‣ O(log n) , why? ‣ because heap has height O(log n) ‣ perfect binary tree with n nodes has height log(n+1)-1 21

  22. Heap: removeMin ‣ Remove root ‣ because it is always the smallest element ‣ How can we remove root w/o destroying heap? Heap destroyed! 1 5 2 5 2 9 7 9 7 6 6 22

  23. Heap: removeMin ‣ Instead swap root with last element & remove it ‣ removing last element is easy 1 6 5 2 5 2 9 7 6 9 7 1 6 5 2 Order 9 7 destroyed! 23

  24. Heap: removeMin ‣ Now swap root down as necessary 6 2 5 2 5 6 9 7 9 7 Heap is in order! 24

  25. Heap: downheap Summary ‣ downheap restores order by ‣ swapping key downward from the root… ‣ …with the smaller of 2 children ‣ terminates when either a leaf is reached or ‣ …some node whose children has key k or more ‣ downheap has runtime ‣ O(log n) , why? ‣ because heap has height O(log n) 25

  26. Heap: removeMin 2 min Activity #1 26

  27. Heap: removeMin 2 min Activity #1 27

  28. Heap: removeMin 1 min Activity #1 28

  29. Heap: removeMin 0 min Activity #1 29

  30. Summary of Heap ‣ insert (key, value) ‣ insert value at insertion node ‣ insertion node must be kept track of ‣ upheap from insertion node as necessary ‣ removeMin ( ) ‣ swap root with last item ‣ delete (swapped) last item ‣ downheap from root as necessary 30

  31. Array-based Heap ‣ Heap with n keys can be represented 2 w/ array of size n+1 5 6 ‣ Storing nodes in array 9 7 ‣ Node stored at index i ‣ left child stored at index 2i ‣ right child stored at index 2i+1 ‣ Leaves & edges not stored 2 5 6 9 7 ‣ Cell 0 not used 0 1 2 3 4 5 ‣ Operations ‣ insert: store new node at index n+1 ‣ removeMin: swap w/ index n and remove

  32. Finding Insertion Node ‣ Can be found in O(log n) Can be done in O(1) time by using ‣ Start at last added node additional data ‣ Go up until a left child or root is reached structure…need this for project! ‣ If left child ‣ go to sibling (corresponding right child) ‣ then go down left until leaf is reached 32

  33. Priority Queue Implementation Implementation insert removeMin Unsorted Array O(1) O(n) Sorted Array O(n) O(1) Unsorted Linked List O(1) O(n) Sorted Linked List O(n) O(1) Hash Table O(1) O(n) Heap O(log n) O(log n) 33

  34. References ‣ Slide #4 ‣ “Queue” in French means tail ‣ The picture depicts the tail of a whale ‣ Slide #7 ‣ The picture is of a Transformers character named Junkheap which transforms from a waste management garbage truck ‣ Slide #8 ‣ The names are characters from the Anime series Naruto (https:// en.wikipedia.org/wiki/Naruto) ‣ The picture is the symbol of the Hidden Leaf Village (where the character Naruto is from) ‣ The heap priorities represent the importance of the character in the village 34

Download Presentation
Download Policy: The content available on the website is offered to you 'AS IS' for your personal information and use only. It cannot be commercialized, licensed, or distributed on other websites without prior consent from the author. To download a presentation, simply click this link. If you encounter any difficulties during the download process, it's possible that the publisher has removed the file from their server.

Recommend


More recommend