language-icon Old Web
English
Sign In

Skew heap

A skew heap (or self-adjusting heap) is a heap data structure implemented as a binary tree. Skew heaps are advantageous because of their ability to merge more quickly than binary heaps. In contrast with binary heaps, there are no structural constraints, so there is no guarantee that the height of the tree is logarithmic. Only two conditions must be satisfied: A skew heap (or self-adjusting heap) is a heap data structure implemented as a binary tree. Skew heaps are advantageous because of their ability to merge more quickly than binary heaps. In contrast with binary heaps, there are no structural constraints, so there is no guarantee that the height of the tree is logarithmic. Only two conditions must be satisfied: A skew heap is a self-adjusting form of a leftist heap which attempts to maintain balance by unconditionally swapping all nodes in the merge path when merging two heaps. (The merge operation is also used when adding and removing values.) With no structural constraints, it may seem that a skew heap would be horribly inefficient. However, amortized complexity analysis can be used to demonstrate that all operations on a skew heap can be done in O(log n).In fact, with φ=(1+√5)/2 denoting the golden ratio, the exact amortized complexity is known to be logφ n (approximately 1.44 log2 n). Skew heaps may be described with the following recursive definition: When two skew heaps are to be merged, we can use a similar process as the merge of two leftist heaps: Before: after

[ "Binary heap", "Dijkstra's algorithm" ]
Parent Topic
Child Topic
    No Parent Topic