A min-heap with better than O(logn) increase key? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-19T23:36:56Z http://stackoverflow.com/feeds/question/952622 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/952622/a-min-heap-with-better-than-ologn-increase-key 5 A min-heap with better than O(logn) increase key? Niki 2009-06-04T19:27:30Z 2009-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#952649 1 Answer by Dario for A min-heap with better than O(logn) increase key? Dario 2009-06-04T19:34:32Z 2009-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#952734 0 Answer by spitfire for A min-heap with better than O(logn) increase key? spitfire 2009-06-04T19:50:27Z 2009-06-04T19:50:27Z <p>Binomial heaps take o(log n) time for decrease key operations! Isn't this slower than fibonacci heaps?</p>