Tagged Questions
Named after its inventors, Adelson-Velskii and Landis, an AVL tree is a self-balancing binary search tree.
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
23k 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
3
votes
1answer
46 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
79 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
0answers
164 views
Rotate function of AVL trees
I understand there are two cases,
all the kids on the same side.
alternating side.
Now is there any general algo for the rotation for both, or shall i check for the two different types and then do ...
3
votes
3answers
430 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
2answers
188 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
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 ...
3
votes
1answer
170 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 ...
3
votes
2answers
221 views
“Rotating” to get AVL Tree
Why is the process of balancing to get an AVL tree called rotation? (While you are at it, what's single & double rotation?)
Every textbook of mine blatantly uses that word without any ...
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?
3
votes
2answers
678 views
How can I correctly display my AVL Tree in LaTex? A solo left-child hangs straight down
The below code almost works perfectly, however the child of 9, 7, hangs straight down instead of as a left-child. How can I correct this?
\usepackage{tikz}
\usepackage{xytree}
...
3
votes
2answers
2k views
AVL Tree Balancing
I am working on an assignment that asks me to implement an AVL tree. I'm pretty sure I have the rotation methods correct, but I'm having trouble figuring out when to use them.
For example, the ...
2
votes
1answer
47 views
AVL tree in-order traversal is not working
My AVL tree is implemented in Java using a two-dimensional array of integers avlTree[35][5] - The columns represent:
[0] - Height Left
[1] - Left Child
[2] - Data
[3] - Right Child
[4] - Height ...
2
votes
1answer
86 views
AVL Tree Traversal, Search problems
I am having a few problems in my AVL tree implementation.. The code for all the rotations and the adding all seem to be correct and I dry-run the program to thoroughly check that it is running ...
2
votes
2answers
53 views
Multiple AVL Trees From Sorted List?
I'm working on an AVL tree assignment and I have a quick question about their definition - we're given a sorted list, and we have to generate an AVL tree from it in O(n) time. I've completed this ...
2
votes
3answers
185 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
147 views
Updating AVL Tree Problem
As of now I only have been working on implementing the same side AVL Tree update.
The problem I am getting is my display function is blowing up after the Binary Search Tree goes through the AVL ...
2
votes
1answer
312 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
1answer
529 views
What is the correct implementation of AVL Tree Rotation?
When inserting 50,49,48 into an AVL Tree, it prints out.
The root is: 50
50 Level: 0 Height: 0
49 Level: 1 Height: 0
50 Level: 0 Height: -1
50 Level: 0 Height: 0 -->> Rotation did not work?
...
2
votes
2answers
452 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
199 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
656 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
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 ...
2
votes
1answer
795 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 ...
2
votes
3answers
664 views
How would you go about implementing a balanced tree with lazy deletions?
More specifically, an AVL tree. Is it possible? I'd like to do it, but I'm thinking the undeleted nodes may be problematic to manage with the rotations.
I have one that works normally, but I'd like ...
1
vote
2answers
115 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
68 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
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
149 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
96 views
Print an AVL Tree to a JTextPane : Java
I've created an AVL Tree, with working Add and Remove methods. However, I need to print out the tree in a visual format. For example, if the balanced tree currently contained 1, 2, 3 it would look ...
1
vote
1answer
224 views
Trying to balance an AVL tree when adding (inserting) : Java
I'm trying to balance my AVL tree after I add a new item to the tree, but I keep getting NPEs. I believe I've narrowed it down to something to do with my balance() method, or possibly more ...
1
vote
2answers
212 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
2answers
348 views
Recalculation of Balance Factor in AVL Tree
After performing a rotation to balance an AVL tree, immediately after an insertion, how can I change the balance factor of all the parent nodes (appropriately, by -1 or 1)?
Each node of the AVL tree ...
1
vote
1answer
977 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 ...
1
vote
1answer
714 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 ...
1
vote
2answers
635 views
how to handle duplicates in AVL tree
I want to make my avl tree support adding duplicates but there is a problem with the default behavior of the binary search tree with duplicates that the rotation could make nodes with equal key be on ...
1
vote
2answers
4k views
Balance factor of nodes in AVL Tree?
to calculate balance factor of a node in avl tree we need to find the height of its left subtree and the height of its right subtree then we subtract the height of right subtree from the height of ...
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?
0
votes
1answer
50 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
0answers
17 views
AVL Tree Balancing help needed?
Hi all im trying to balance an AVL tree starting from the rootNOde . it throws some stack overflow error though. but i start from a different position in the tree it works and balances fine.
I am ...
0
votes
1answer
32 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 ...