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?

link|improve this question

12  
OP rep of 666 confirms AVL Trees are Evil – SwDevMan81 Sep 8 '09 at 17:53
1  
I don't suppose we can upvote this question then? ;) – Lucas Jones Sep 10 '09 at 18:19
feedback

6 Answers

up vote 13 down vote accepted

Evil from what point of view?

Like always: there are no bad tools, only bad craftsmen.

In my memory, AVL trees have slower insertion/removal but faster retrieval than Red/black. Mainly because of the balance algorithm.

link|improve this answer
2  
Exactly. If you need a write-once–read-many map, AVL trees are hard to beat. In my opinion, they are also easier to implement correctly. – erickson Sep 8 '09 at 15:39
1  
A write-once–read-many map sounds more like a sorted array to me... A write-rarely–read-many map sounds more than an AVL tree. However even in those cases be sure to consider a sorted array. The constant costs are considerably lower, so you will need many entries before an AVL tree outperforms both red/black tree and a sorted array. – Ben Strasser Sep 8 '09 at 16:43
AVL trees are however highly comprehenable. IME, RB trees are not understood by their implementors - they are merely following the rules; they do not genuinely comprehand what is going on, conceptually. – Blank Xavier Oct 12 '09 at 13:28
feedback

No, AVL trees are certainly not evil in any respect. They are a completely valid self balancing tree structure. They have different performance characteristics than Red-Black trees certainly and typically these differences lead to people choosing a red-black tree over an AVL tree. But this does not make them evil.

link|improve this answer
feedback

I'm sure that AVL trees are evil in the same way that GOTO is evil or BUBBLE SORT is evil.

Algorithms aren't evil, but algorithms also don't jump up and down to tell you when they are appropriate either.

link|improve this answer
6  
Goto isn't an algorithm and really isn't a legitimate comparison. – Imagist Sep 8 '09 at 15:51
1  
The problem w/ bubble sort is that there are no real trade-offs which make it superior. You can't say that for AVL trees. – T.E.D. Sep 8 '09 at 16:06
5  
::snark:: Bubble sort uses very little code, and is easily realized in a traditional Turing machine. – dmckee Sep 8 '09 at 16:15
There are (rare) cases where bubble sort is the fastest sort. – Henk Holterman Sep 8 '09 at 16:28
@Henk: I wouldn't even call them that rare. When your input data is going to be mostly sorted, Bubble sort is essentially linear time. – Novelocrat Sep 10 '09 at 19:50
show 1 more comment
feedback

Here's a lot of info about the differences between Red-Black and AVL-Trees:

http://discuss.fogcreek.com/joelonsoftware/default.asp?cmd=show&ixPost=22948

and a paper comparing the different structures:

http://www.stanford.edu/~blp/papers/libavl.pdf

In short - AVL is faster to search, Red-Black faster to insert.

link|improve this answer
The fogcreek link is bad. The content is misleading. AVL trees do not require O(log n) rotations for rebalancing. Max 2. – Jesse Sep 13 '10 at 12:48
feedback

Splay Trees are much cooler. :)

link|improve this answer
feedback

No, they aren't evil, only a bit tricky to program.

AVL Trees http://www.eternallyconfuzzled.com/tuts/datastructures/jsw%5Ftut%5Favl.aspx

Red Black tree link from there too.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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