Tagged Questions
15
votes
6answers
2k 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?
11
votes
8answers
24k 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 ...
9
votes
2answers
3k views
balancing an AVL tree (C++)
I'm having the hardest time trying to figure out how to balance an AVL tree for my class. I've got it inserting with this:
Node* Tree::insert(int d)
{
cout << "base insert\t" << d ...
5
votes
3answers
2k 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 ...
3
votes
2answers
189 views
AVL trees balancing
Given an AVL tree below:
23
/ \
19 35
/ \ / \
8 20 27 40
/
38
/
36
Is it ok to just do a ...
3
votes
2answers
486 views
Paged binary trees vs. AVL trees and/or B-trees
How are paged binary trees different from AVL trees and/or B-trees?
2
votes
1answer
313 views
Merging AVL trees using an empty tree (C++ templates)
As part of an AVL template I am working on (C++ templates) I was trying to merge 2 AVL trees in O(n1+n2) complexity when n1+n2 is the total elements in both trees.
I thought about the next algorithm.
...
1
vote
1answer
715 views
New to AVL tree implementation
I am writing a sliding window compression algorithm (LZ77) that searches for phrases in a "moving" dictionary.
So far I have written a BST where each node is stored in an array and it's index in the ...