Tagged Questions

9
votes
6answers
512 views

Are AVL Trees Evil?

I was reading the article from Steve Yegge about singletons. In it he mentions his teacher told him AVL Trees were evil. Is it just that red and black trees are a better solution?
3
votes
3answers
137 views

When to choose RB tree, B-Tree or AVL tree?

As a programmer when should I consider using a RB tree, B- tree or an AVL tree? What are the key points that needs to be considered before deciding on the choice? Can someone please explain with a …
3
votes
3answers
713 views

How is Wikipedia’s example of an unbalanced AVL tree really unbalanced?

The image above is from "Wikipedia's entry on AVL trees" which Wikipedia indicates is unbalanced. How is this tree not balanced already? Here's a quote from the article: The balance factor of a …
2
votes
1answer
295 views

Efficient Algorithm for building an AVL Tree from large collection

I have a large AVL Tree which I build some times during program from an unsorted collection (it will be used to insert/remove items later). Is there any better algorithm than using the simple insert …
1
vote
3answers
151 views

How would you go about implementing a balanced tree with lazy deletions?

More specifically, an AVL tree. Is it possible? I'd like to do it, but I'm thinking the undeleted nodes may be problematic to manage with the rotations. I have one that works normally, but I'd like …
1
vote
6answers
2k views

The best way to calculate the height in a binary search tree? (balancing an AVL-tree)

I'm looking for the best way to calculate a nodes balance in an AVL-tree. I thought I had it working, but after some heavy inserting/updating I can see that it's not working correct (at all). This …
1
vote
3answers
363 views

Are AVL trees always a subset of red black trees?

I am searching for a proof that all AVL trees can be colored like a red-black tree? Can anyone give the proof?
0
votes
0answers
163 views

An open adressed hash table using AVL trees with quadratic probing.

Each position in the table contains an AVL tree. Now, insertion and deletion work fine, but the problem comes with the deletion. Suppose I have this: [0]: a0 b0 c0 [1]: d0 e0 f0 [2]: g2 h0 i0 The …