A min-heap with better than O(logn) increase key? - Stack Overflow most recent 30 from stackoverflow.com2009-12-19T23:36:56Zhttp://stackoverflow.com/feeds/question/952622http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/952622/a-min-heap-with-better-than-ologn-increase-key5A min-heap with better than O(logn) increase key?Niki2009-06-04T19:27:30Z2009-06-04T20:33:30Z
<p>I'm using a priority queue that initially bases the priority of its elements on a heuristic. As elements are dequeued the heuristic is updated and elements currently in the queue may have their keys increased.</p>
<p>I know there are heaps (Fibonacci heaps specifically) that have amortized O(1) decrease key operations, but are there any heap structures that have similar bounds on the increase key operations?</p>
<p>For my application this is far from a performance issue (a binary heap works fine) it's really just about academic curiosity.</p>
<p>Edit: to clarify, I'm looking for a data structure that has a faster than O(logn) time for the <strong>increase key</strong> operation, not decrease key. My application never decreases the key as the heuristic over-estimates the priority.</p>
http://stackoverflow.com/questions/952622/a-min-heap-with-better-than-ologn-increase-key/952649#9526491Answer by Dario for A min-heap with better than O(logn) increase key?Dario2009-06-04T19:34:32Z2009-06-04T19:34:32Z<p>Binary heaps are too unflexible to beat logarithmic complexity.
Binomial heaps just allow a more efficient join-operation.</p>
<p>Other heaps with good decrease-key performance are <a href="http://en.wikipedia.org/wiki/Pairing%5Fheap" rel="nofollow">pairing heaps</a> and <a href="http://en.wikipedia.org/wiki/2-3%5Fheap" rel="nofollow">2-3 heaps</a></p>
http://stackoverflow.com/questions/952622/a-min-heap-with-better-than-ologn-increase-key/952734#9527340Answer by spitfire for A min-heap with better than O(logn) increase key?spitfire2009-06-04T19:50:27Z2009-06-04T19:50:27Z<p>Binomial heaps take o(log n) time for decrease key operations! Isn't this slower than fibonacci heaps?</p>