Double-ended priority queue
In computer science, a double-ended priority queue or double-ended heap is a data structure similar to a priority queue or heap, but allows for efficient removal of both the maximum and minimum, according to some ordering on the keys stored in the structure. Every element in a DEPQ has a priority or value. In a DEPQ, it is possible to remove the elements in both ascending as well as descending order.
Operations
A double-ended priority queue features the following operations:;isEmpty: Checks if DEPQ is empty and returns true if empty.
;size: Returns the total number of elements present in the DEPQ.
;getMin: Returns the element having least priority.
;getMax: Returns the element having highest priority.
;put: Inserts the element x in the DEPQ.
;removeMin: Removes an element with minimum priority and returns this element.
;removeMax: Removes an element with maximum priority and returns this element.
If an operation is to be performed on two elements having the same priority, then the element inserted first is chosen. Also, the priority of any element can be changed once it has been inserted in the DEPQ.
Implementation
Double-ended priority queues can be built from balanced binary search trees, or using specialized data structures like min-max heap and pairing heap.Generic methods of arriving at double-ended priority queues from normal priority queues are:
Dual structure method
In this method two different priority queues for min and max are maintained. The same elements in both the PQs are shown with the help of correspondence pointers.Here, the minimum and maximum elements are values contained in the root nodes of min heap and max heap respectively.
- Removing the min element: Perform removemin on the min heap and remove on the max heap, where node value is the value in the corresponding node in the max heap.
- Removing the max element: Perform removemax on the max heap and remove on the min heap, where node value is the value in the corresponding node in the min heap.
Total correspondence
Leaf correspondence
In this method only the leaf elements of the min and max PQ form corresponding one-to-one pairs. It is not necessary for non-leaf elements to be in a one-to-one correspondence pair.Interval heaps
Apart from the above-mentioned correspondence methods, DEPQ's can be obtained efficiently using interval heaps. An interval heap is like an embedded min-max heap in which each node contains two elements. It is a complete binary tree in which:- The left element is less than or equal to the right element.
- Both the elements define a closed interval.
- Interval represented by any node except the root is a sub-interval of the parent node.
- Elements on the left hand side define a min heap.
- Elements on the right hand side define a max heap.
- Even number of elements: In this case, each node contains two elements say p and q, with p ≤ q. Every node is then represented by the interval .
- Odd number of elements: In this case, each node except the last contains two elements represented by the interval whereas the last node will contain a single element and is represented by the interval .
Inserting an element
- Odd number of elements: If the number of elements in the interval heap is odd, the new element is firstly inserted in the last node. Then, it is successively compared with the previous node elements and tested to satisfy the criteria essential for an interval heap as stated above. In case if the element does not satisfy any of the criteria, it is moved from the last node to the root until all the conditions are satisfied.
- Even number of elements: If the number of elements is even, then for the insertion of a new element an additional node is created. If the element falls to the left of the parent interval, it is considered to be in the min heap and if the element falls to the right of the parent interval, it is considered in the max heap. Further, it is compared successively and moved from the last node to the root until all the conditions for interval heap are satisfied. If the element lies within the interval of the parent node itself, the process is stopped then and there itself and moving of elements does not take place.
Deleting an element
- Min element: In an interval heap, the minimum element is the element on the left hand side of the root node. This element is removed and returned. To fill in the vacancy created on the left hand side of the root node, an element from the last node is removed and reinserted into the root node. This element is then compared successively with all the left hand elements of the descending nodes and the process stops when all the conditions for an interval heap are satisfied.In case if the left hand side element in the node becomes greater than the right side element at any stage, the two elements are swapped and then further comparisons are done. Finally, the root node will again contain the minimum element on the left hand side.
- Max element: In an interval heap, the maximum element is the element on the right hand side of the root node. This element is removed and returned. To fill in the vacancy created on the right hand side of the root node, an element from the last node is removed and reinserted into the root node. Further comparisons are carried out on a similar basis as discussed above. Finally, the root node will again contain the max element on the right hand side.
Time Complexity
Interval Heaps
When DEPQ's are implemented using Interval heaps consisting of n elements, the time complexities for the various functions are formulated in the table belowOperation | Time Complexity |
init | O |
isEmpty | O |
getmin | O |
getmax | O |
size | O |
insert | O |
removeMin | O |
removeMax | O |
Pairing heaps
When DEPQ's are implemented using heaps or pairing heaps consisting of n elements, the time complexities for the various functions are formulated in the table below. For pairing heaps, it is an amortized complexity.Operation | Time Complexity |
isEmpty | O |
getmin | O |
getmax | O |
insert | O |
removeMax | O |
removeMin | O |
Applications
External sorting
One example application of the double-ended priority queue is external sorting. In an external sort, there are more elements than can be held in the computer's memory. The elements to be sorted are initially on a disk and the sorted sequence is to be left on the disk. The external quick sort is implemented using the DEPQ as follows:- Read in as many elements as will fit into an internal DEPQ. The elements in the DEPQ will eventually be the middle group of elements.
- Read in the remaining elements. If the next element is ≤ the smallest element in the DEPQ, output this next element as part of the left group. If the next element is ≥ the largest element in the DEPQ, output this next element as part of the right group. Otherwise, remove either the max or min element from the DEPQ ; if the max element is removed, output it as part of the right group; otherwise, output the removed element as part of the left group; insert the newly input element into the DEPQ.
- Output the elements in the DEPQ, in sorted order, as the middle group.
- Sort the left and right groups recursively.