Tagged Questions
0
votes
0answers
24 views
Logic Error with an AVL tree
I am tryintto implement an AVL tree using JAVA. I have followed this code as an example:
http://knowledgejunk.net/2010/11/09/avltree-java-source-code/
But mine is a bit different, I want to read ...
0
votes
2answers
22 views
unable to add a node in avl_tree
I have written a code in C# for the implementation of AVL_trees. I am having some problems with nodes that's why I am unable to insert data in the nodes. Below is my code.
public class avl_node
{
...
0
votes
0answers
112 views
How to implement avl tree with sorted array?
I've written this program which randomly generates an array, sorts it, and then displays it in a GUI balanced binary tree. The problem I'm encountering is that on the left side of the tree, numbers ...
1
vote
1answer
99 views
Calculate Balance Factor
I have an assignment, to implement a method which prints out the balance factor of all the internal nodes of the binary tree t.
I have tried to do it, but I needed three methods.. I think there ...
1
vote
1answer
120 views
What is the Ruby equivalent of Java's TreeSet<Integer> (self balancing binary tree)?
I want to use a self balancing binary tree to play around with some algorithms, but I'm having difficulty finding the Ruby equivalent of Java's TreeSet (or C#'s SortedSet).
I have found web code ...
0
votes
1answer
145 views
Drawing Binary trees (AVL and Red-black trees)
I don't understand how to do this, can someone please help.
I need to insert the following keys into an empty AVL tree and show the tree after each insertion.
The keys should be taken as strings of ...
-4
votes
1answer
166 views
AVL and Red-Black Trees [closed]
I do not know how to do either of these problems. However, I did find example code for the AVL tree here: http://users.cis.fiu.edu/~weiss/dsaajava/code/DataStructures/AvlTree.java
However, I still am ...
0
votes
1answer
149 views
AVL tree - manual drawing and printing
Is there any program/app that draws and save avl tree charts ? To pdf format preferably
0
votes
0answers
150 views
AVL Tree sentinel
Hello I am trying to finish a school project with AVL trees. What happens is that once I insert the root as well as two other nodes everything is ok, the program fails if I try adding any more than ...
2
votes
2answers
135 views
AVL tree - Why is it a must that the heights of the left and right children of some node may differ by 1?
What's wrong with the heights of the left and right children of some node differ being by 2?
This is my first encounter with AVL trees, and I can't seem to understand why it is a must?
Really, ...
0
votes
2answers
537 views
Inserting strings into an AVL tree in C++?
I understand how an AVL tree works with integers.. but I'm having a hard time figuring out a way to insert strings into one instead. How would the strings be compared?
I've thought of just using the ...
1
vote
1answer
106 views
Why does the root never change and why am I getting a bad access error?
I'm working on an assignment to create a Self Ordering Binary Search Tree what re-organizes itself every time a duplicate element tries to be inserted into the tree. I'm having a few errors that I ...
3
votes
4answers
495 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 ...
2
votes
1answer
518 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.
...
12
votes
4answers
10k 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 ...
1
vote
1answer
2k 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 ...
4
votes
2answers
842 views
Paged binary trees vs. AVL trees and/or B-trees
How are paged binary trees different from AVL trees and/or B-trees?
19
votes
6answers
3k 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?
20
votes
7answers
49k 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 ...
6
votes
3answers
3k 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 ...
11
votes
8answers
21k 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 never get my head around was the intricacy of the ...