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
25k 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 ...
8
votes
3answers
1k views

Concatenating/Merging/Joining two AVL trees

Assume that I have two AVL trees and that each element from the first tree is smaller then any element from the second tree. What is the most efficient way to concatenate them into one single AVL ...
6
votes
7answers
12k views

Balancing a Binary Tree (AVL)

Ok, this is another one in the theory realm for the CS guys around. In the 90's I did fairly well in implementing BST's. The only thing I could bever get my head around was the intricacy of the ...
3
votes
1answer
58 views

How to generate an AVL tree as lopsided as possible?

I saw this in some paper and someone argued that there can be at most log(n) times rotation when we delete a node of an AVL tree. I believe we can achieve this by generating an AVL tree as lopsided as ...
3
votes
3answers
442 views

Binary Tree Rotation

I'm working on implementing an AVL Search tree. So far I've finished the coding part and I've started testing it for bugs. I found out that my node rotation methods are bugged and for god's sake I ...
3
votes
1answer
178 views

Algorithm for the special case of rank tree

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 ...
2
votes
1answer
236 views

Search max value between 2 AVL nodes

I have an AVL tree while each node consists of: Key Value The AVL tree is ordered by the keys. So if I got 2 keys and now I want to find the maximum value between those 2 keys. I've tried adding ...
2
votes
2answers
479 views

Merging 2 diferent AVL trees

Assume that I have two AVL trees and that I know their respective sizes, but I don't know if there are repeated nodes, or any other information. What would be the most efficient way to merge them in a ...
2
votes
3answers
700 views

How to check if my AVL tree implementation is correct?

guys. I think I've created an AVL tree implementation, but as AVL Tree is quite a complex structure, I need to test it. So the question is - how can I test it? Have you got any ideas? Up to this ...
2
votes
1answer
828 views

AVL tree in C language

Hey all; i am currently doing a project that requires the use of AVL trees , the insert function i wrote for the avl does not seem to be working , it works for 3 or 4 nodes at maximum ; i would ...
2
votes
1answer
1k 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
2answers
135 views

avl tree rotation

I am trying to do a an avl tree which updates itself everytime the tree is unbalanced. The rotations are working but i have a bug where if for example the tree node 7, leftChild 6 , leftchild of ...
1
vote
3answers
76 views

what is the meaning of lookup algorithm?

I am a bit confused a term "lookup algorithm of avl trees". When I have searched this in google, I see so many website with related about b-tree not avl tree. So, Is b-tree algorithm equal lookup ...
1
vote
3answers
153 views

Difference between AVL trees and splay trees

I am studying about various trees, and came across AVL trees and splay trees. I want to know What is difference between AVL trees and splay trees? On what basis do we select these tress? What are ...
1
vote
2answers
216 views

AVL tree management

I have some question about AVL, lets assume I created some avl-tree of integers, how do I need to manage insertion into my tree to be able to take out the longest sequence of numbers, (insertion have ...
1
vote
1answer
745 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 ...
0
votes
1answer
78 views

Regarding AVL rotations

I am reading about AVL trees in Data structures and algorithms by Mark Allen Wesis Suppose the node to be rebalanced is X. There are 4 cases that we might have to fix (two are the mirror images ...
0
votes
2answers
119 views

Analysis of AVL tree

I am reading on AVL tres in Data structures and analysis by Weiss One of the balance condition would insist that every node must have left and right subtrees of the same height. If the height of ...
0
votes
2answers
96 views

Doubt Regarding Function to check whether a tree is balanced or not?

I read in a book named "Coding Interview Cracked", that to check whether a BST is balanced or not, just find out the difference between the maximum and minimum height but I not sure whether it is 100% ...
0
votes
2answers
2k views

Calculating the balance factor of a node in avl tree

I want to calculate the balance factor of a node in avl tree without using any recursive procedure. How can i do that? Please tell me method or provide C++ code snippet.