I'm trying to create some rank tree based on AVL tree with special requirements, lets assume that I have AVL tree with nodes, each node has 2 fields:

id, priority

my AVL tree is sorted by id, also I have a function:

foo(currentId, delta)

which lowers the priority of the all ids which is less or equal to currentId by delta this function has to work with complexity O(log n), so my question is which additional information do I need to store to be able to pop the node with the highest priority at any stage with complexity O(1) (after using foo also!).

P.S. I tried to store info about max priority in the right subtree, max priority in the left subtree, but it needs a lot of changes after foo. It will take more than just O(log n). Thanks in advance for any good ideas or good books about Trees.

link|improve this question

Any reason for using AVL trees? It seems like various priority queue implementations might be nicer here. – templatetypedef Jan 7 '11 at 0:17
@templatetypedef: can You give me please link with useful info? don't know what are You talking about... – rookie Jan 7 '11 at 0:18
Are you calling foo() after every pop? What values of delta are you using relative to the id's? A walked-through example of what you're trying to achieve will help us understand what you're trying to achieve here. – marcog Jan 7 '11 at 0:32
@marcog: no randomly, about id is always > 0, there is no other info... – rookie Jan 7 '11 at 0:39
If everything is completely random and you have nothing else to go on, your best average case is brute forcing the highest priority search. If you have more info, let us know in a worked example and we can help you further. – marcog Jan 7 '11 at 0:43
feedback

1 Answer

up vote 1 down vote accepted

Rather than store the maximum priority that appears in each subtree, for each node c with parent p, store in c the difference between the maximum priority in c's subtree and the maximum priority in p's subtree. This way, you can update a range of priorities in O(log n) time, and still find the element of maximum priority in O(log n) time.

link|improve this answer
thanks for the answer, but I need O(1) – rookie Jan 7 '11 at 8:02
Why is it so important to have O(1) instead of O(log n), since you're already paying that much during the other operations on the tree? If you want, you can probably amortize the cost of removing the high-priority nodes down to O(1) if you pay double for the insertion events and calls to foo. This is just accounting though. – jonderry Jan 7 '11 at 8:19
thank You for idea, but it will not help me... – rookie Jan 7 '11 at 14:25
feedback

Your Answer

 
or
required, but never shown

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