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?
6
votes
3answers
1k 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
1answer
290 views
Why is avl tree faster for searching than red black tree?
I have read it in a couple of places that avl tree search faster, but not able to understand. As I understand :
max height of red-black tree = 2*log(N+1)
height of AVL tree = 1.44*logo(N+1)
Is it ...
2
votes
2answers
119 views
What Tree structure should I use for indexing?
I'm thinking of experimenting with using a tree-structure for indexing as I want to test whether it is faster than my current indexing implementation which is in essence a hash based lookup.
I've ...
1
vote
1answer
112 views
Comparison about balanced binary search trees
I've read some Q&As about self-balancing binary trees, but I'm not quite familiar with all of them.
The first one of them I got to know is AVL, the second is Red-Black tree.
There are something ...
1
vote
4answers
1k 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?