Pairing heap

From Wikipedia, the free encyclopedia

Pairing heaps are a type of heap data structure with relatively simple implementation and excellent practical amortized performance. However, it has proven very difficult to determine the precise asymptotic running time of pairing heaps.

Pairing heaps are heap ordered multiway trees. Describing the various heap operations is relatively simple (in the following we assume a min-heap):

  • find-min: simply return the top element of the heap.
  • merge: compare the two root elements, the smaller remains the root of the result and the subtree of the larger element is appended as a child of this root.
  • insert: create a new heap for the inserted element and merge into the original heap.
  • decrease-key: remove the subtree rooted at the key to be decreased then merge it with the heap.
  • delete-min: remove the root and merge its subtrees. Various strategies are employed.

The amortized time per delete-min is O(logn).[1] The operations find-min, merge, and insert take O(1) amortized time[2] and decrease-key takes 2^{O(\sqrt{\log\log n})} amortized time.[3] Fredman proved that the amortized time per decrease-key is at least Ω(loglogn).[4] That is, they are less efficient than Fibonacci heaps, which perform decrease-key in O(1) amortized time.

Stasko and Vitter[5] and Moret and Shapiro[6] conducted experiments on pairing heaps and other heap data structures. They concluded that the pairing heap is as fast as, and often faster than, other efficient data structures like the binary heaps.

[edit] References

  1. ^ Michael L. Fredman, Robert Sedgewick, Daniel Dominic Sleator, and Robert Endre Tarjan. The Pairing Heap: A New Form of Self-Adjusting Heap. Algorithmica 1(1):111--129, 1986.
  2. ^ John Iacono. Improved upper bounds for pairing heaps. In Proceedings 7th Scandinavian Workshop on Algorithm Theory, LNCS 1851, pages 63--77, 2000.
  3. ^ Seth Pettie. Towards a final analysis of pairing heaps. In Proceedings 46th Annual IEEE Symposium on Foundations of Computer Science, pages 174--183, 2005.
  4. ^ Michael L. Fredman. On the efficiency of pairing heaps and related data structures. J. ACM 46(4):473--501, 1999.
  5. ^ John T. Stasko and Jeffrey S. Vitter. Pairing Heaps: Experiments and Analysis. Commun. ACM 30(3):234--249, 1987.
  6. ^ Bernard M. E. Moret, Henry D. Shapiro. An Empirical Analysis of Algorithms for Constructing a Minimum Spanning Tree. Proceedings 2nd Workshop on Algorithms and Data Structures, pages 400--411, 1991


[edit] External links