vote up 5 vote down star

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.

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?

For my application this is far from a performance issue (a binary heap works fine) it's really just about academic curiosity.

Edit: to clarify, I'm looking for a data structure that has a faster than O(logn) time for the increase key operation, not decrease key. My application never decreases the key as the heuristic over-estimates the priority.

flag

50% accept rate

2 Answers

vote up 1 vote down

Binary heaps are too unflexible to beat logarithmic complexity. Binomial heaps just allow a more efficient join-operation.

Other heaps with good decrease-key performance are pairing heaps and 2-3 heaps

link|flag
Pairing heaps sounds interesting but do they improve upon O(logn) for increase key operations? – Niki Jun 4 at 20:35
vote up 0 vote down

Binomial heaps take o(log n) time for decrease key operations! Isn't this slower than fibonacci heaps?

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.