Tagged Questions

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 ...
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
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 ...
5
votes
2answers
992 views

AVL TREE in c++

I have a problem with this very simple block of code. please give me your advice . (My this problem is solved, and in solving this problem the person having id stakx really helped me, the only problem ...
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 ...
4
votes
4answers
2k views

AVL tree vs. B-tree

How is an AVL tree different from a B-tree?
3
votes
1answer
49 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
2answers
82 views

.NET Built-in AVL-Tree?

The title says it all, is there a built in AVL Tree in the .NET libraries? I searched but didn't find any. If there is, then where? what namespace? If not, is there any good implementation for AVL ...
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
3answers
187 views

How to implement AVL tree without parent pointer?

I saw some articles about the implementation of AVL's rebalance() function. After each insertion, we should check the insertion Node's ancestors for balance. So I think, in order to check ancestors' ...
2
votes
1answer
225 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
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. ...
2
votes
2answers
456 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
4answers
201 views

Choosing a Data structure for very large data

I have x (millions) positive integers, where their values can be as big as allowed (+2,147,483,647). Assuming they are unique, what is the best way to store them for a lookup intensive program. So ...
2
votes
3answers
662 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
799 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 ...
1
vote
2answers
117 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
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
1answer
150 views

multiple AVL tree rotation

Say i have a unordered set s{3,6,5,1,2,4} and i need to construct an AVL tree, this much is fine... i understand basic rotations and i get to this point here: 5 ...
1
vote
1answer
984 views

Performance of an AVL Tree in C#

I have implemented an AVL tree in C# whose insertion matrix is as follows Number of Elements Time taken to insert (sec) ------------------------------------------------------ 10 ...
0
votes
1answer
55 views

When is an AVL tree better than a hash table?

More specifically, are there any operations that can be performed more efficiently if using an AVL tree rather than a hash table?
0
votes
1answer
34 views

use of icomparable in AVL Tree

public class Node : IComparable { public object element; public Node left; public Node right; public int height; public Node(object data, Node L, Node R) { element ...
0
votes
2answers
35 views

Which data structure should i use to represent a large amount of records each presents range of items?

I'm looking for software represenation for a very large amount of records ( more than 400K records) Each record has two keys . one for lower bound and one for upper bound. These number represent a ...
0
votes
1answer
167 views

Updating the balancing factor of AVL tree nodes

I am learning about AVL trees, and I know how to do all of the rotations, but the one thing I need to know is how to make it so that after each insertion or rotation the balancing factors of the nodes ...
0
votes
1answer
278 views

AVL tree insertion question

I am watching a lecture from IIT about data structures ( Dr.naveen garg ) About AVL tree. My Question : Why the height of T2 can't be (h-1)?
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.