priority queues scala priority queues
play

Priority Queues Scala Priority Queues In - PowerPoint PPT Presentation

CS206 CS206 Priority Queues Scala Priority Queues In scala.collection.mutable.PriorityQueue[T] , the An internet router receives data packets, and forwards them in methods are called head , dequeue , and enqueue . the direction of their


  1. CS206 CS206 Priority Queues Scala Priority Queues In scala.collection.mutable.PriorityQueue[T] , the An internet router receives data packets, and forwards them in methods are called head , dequeue , and enqueue . the direction of their destination. When the line is busy, packets need to be queued. scala> import scala.collection.mutable.PriorityQueue scala> val p = new PriorityQueue[Double] Some data packets have higher priority than others, and need scala> p.enqueue(2.3, 5.9, 1.5, 9.8, 13.0) to be sent first. Queuing is not FIFO. scala> p.head res1: Double = 13.0 A Priority Queue is a data type where elements have different scala> p.dequeue() priorities. The priority queue provides three main methods: res2: Double = 13.0 findMin Return the most urgent element (highest priority, e.g. scala> p.head minimal event time). res3: Double = 9.8 deleteMin Remove the most urgent element from the priority scala> p.enqueue(11.2) queue. scala> p.head insert Add a new element to the priority queue. res5: Double = 11.2 CS206 CS206 Binary Heaps Heaps and Heap Order We will use a Heap: a complete binary tree, with one element (an implementation of Priority Queues) per node. The abstract data type Priority Queue provides three main Heap-order: For every node x with parent p , the element in p methods: is smaller than the element in x . findMin Return the smallest element. deleteMin Remove the smallest element. 3 3 insert Add a new element. 7 4 5 4 Implementation findMin deleteMin insert 9 8 5 8 7 9 Unsorted list O ( n ) O ( n ) O (1) Sorted list O (1) O (1) O ( n ) Heap O (1) O (log n ) O (log n ) Many different heaps are possible for the same data.

  2. CS206 CS206 The Insert Operation • Once we have placed the new node in the proper position, • The insert method adds a given element to the heap. then we must account for the ordering property • We need to maintain heap order and completeness • We simply compare the new node to its parent value and swap the values if necessary There is only one correct node that can be added: • We continue this process up the tree until either the new • Either the next open position from the left at level h value is greater than its parent or the new value becomes • Or the first position in level h + 1 if level h is full the root of the heap 3 3 3 5 7 4 4 5 4 7 9 5 8 9 8 6 8 7 9 CS206 CS206 • Once we have placed the new node in the proper position, • Once we have placed the new node in the proper position, then we must account for the ordering property then we must account for the ordering property • We simply compare the new node to its parent value and • We simply compare the new node to its parent value and swap the values if necessary swap the values if necessary • We continue this process up the tree until either the new • We continue this process up the tree until either the new value is greater than its parent or the new value becomes value is greater than its parent or the new value becomes the root of the heap the root of the heap 3 3 5 5 4 2 7 7 8 9 2 8 9 4

  3. CS206 CS206 The DeleteMin Operation • Once we have placed the new node in the proper position, • The deleteMin method removes the minimum element then we must account for the ordering property from the heap • We simply compare the new node to its parent value and • The minimum element is always stored at the root swap the values if necessary • After removing the minimum, we have to fill the root with • We continue this process up the tree until either the new a replacement element. value is greater than its parent or the new value becomes • The replacement element is always the last leaf the root of the heap • The last leaf is always the last element at level h 2 3 3 3 5 3 5 4 7 4 7 4 8 7 9 4 7 9 8 8 9 5 6 9 CS206 CS206 • Once the element stored in the last leaf has been moved to • Once the element stored in the last leaf has been moved to the root, the heap will have to reordered the root, the heap will have to reordered • This is accomplished by comparing the new root element to • This is accomplished by comparing the new root element to the smaller of its children and swapping them if necessary the smaller of its children and swapping them if necessary • This process is repeated down the tree until the element is • This process is repeated down the tree until the element is either in a leaf or is less than both of its children either in a leaf or is less than both of its children 3 6 7 4 7 4 8 9 5 8 9 5 6

  4. CS206 CS206 • Once the element stored in the last leaf has been moved to • Once the element stored in the last leaf has been moved to the root, the heap will have to reordered the root, the heap will have to reordered • This is accomplished by comparing the new root element to • This is accomplished by comparing the new root element to the smaller of its children and swapping them if necessary the smaller of its children and swapping them if necessary • This process is repeated down the tree until the element is • This process is repeated down the tree until the element is either in a leaf or is less than both of its children either in a leaf or is less than both of its children 4 4 7 6 7 5 9 5 9 6 8 8 CS206 CS206 Priority-Queue Sort We can easily sort using a priority queue: Because the tree has a fixed structure, we can implement it using an array. def pqSort(A: Array[E]) { val Q = new PriorityQueue[E] The height of the tree is log n , and so insert and deleteMin for (el <- A) take O (log n ) time. Q.enqueue(el) for (i <- 0 until A.length) Building a heap out of n given items takes time O ( n log n ) A(i) = Q.dequeue() using n insert operations. } We can do better: Just throw all n items into the array, then run buildHeap to fix the heap-ordering in O ( n ) time. What is the time-complexity? Idea: If we have a binary tree such that the two subtrees of the • n × insert , root are heaps, then we only need to let the root element • n × deleteMin . percolate down into a correct position to ensure that the tree is a heap.

  5. CS206 CS206 Priority-Queue Sort Heap-Sort Priority queue implemented as unsorted list: • Instead of inserting the n elements one by one, we create a n × O (1) for insert : O ( n ) heap operating on A ; n × O ( n ) for deleteMin : O ( n 2 ) • Use buildHeap to ensure heap ordering on the heap in O ( n ) time; ≈ Selection-Sort • Take out one element at a time using deleteMin . Priority queue implemented as sorted list: n × O ( n ) for insert : O ( n 2 ) We don’t need extra storage! We can put the items obtained by deleteMin into the array n × O (1) for deleteMin : O ( n ) element that has become free because the size of the heap has ≈ Insertion-Sort decreased. Priority queue implemented using binary heap: Improvements: n × O (log n ) for insert : O ( n log n ) • Use max-heap so that items are sorted into increasing order n × O (log n ) for deleteMin : O ( n log n ) • Change indexing of array so that heap starts at index 0. ⇒ Heap-Sort

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