Named after its inventors, Adelson-Velskii and Landis, an AVL tree is a self-balancing binary search tree.

learn more… | top users | synonyms

-1
votes
1answer
40 views

Searching a node in an AVL tree depending on balance factor and not the data

I know how to search a node with a particular key into an AVL tree . But I want to know how to search in an AVL tree with a balance factor of -2 Here is the code that I have tried. #include ...
0
votes
1answer
32 views

Printing an array of nodes

Is it possible to print an array of nodes? I need to display the AVL tree as it is being built, but whenever I run this code, the program crashes. Any alternative ways around this? int k = 0; ...
1
vote
2answers
29 views

Printing left and right values of an avl tree

I am trying to write a piece of code that displays the integers as they are being loaded into a binary tree. I have written this so far: node*t; t = NULL; for( j = 0; j < 33; j++) { ...
0
votes
1answer
46 views

Implementing an AVL tree using a List

So I have implemented an Binary search tree using a parameterized List i.e. List<Node> tree = new List<>(); The tree works fine. The node itself doesn't know anything about its parent ...
0
votes
1answer
34 views

C - Null pointer issue on AVL tree rotation implementation

I'm implementing an AVL tree in C. I've posted my tree rotations below, as well as the valgrind errors I get when I try to test them. Why am I getting these errors? I understand that the valgrind ...
0
votes
2answers
21 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
17 views

Family of AVL-trees in which a single removeItem operation may require Θ(lg(n)) rotations

I've came across this in a lecture note and I was wondering if someone can help me understand what's being asked - Describe a family of AVL-trees in which a single removeItem operation may ...
1
vote
0answers
55 views

AVL Tree with setting height

I am taking a data structures course this semester. This lab is supposed to make an AVL tree that can add and delete but I need to keep re-balancing. I did a binary search tree so I am just copying ...
0
votes
0answers
100 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 ...
0
votes
1answer
77 views

AVL Tree implementation with nodes or without nodes

We have a class project to implement an AVL tree. Here are two very general implementations: template<class T> class AVLTree { int key; int height; int BF; T data; AVLTree<T>* ...
0
votes
0answers
40 views

Balancing an AVL tree in C++

I am trying to implement the Set class using an AVL tree and I can only use arrays, pointers, and objects from the standard library. I need help figuring out how to code balancing into my tree. I ...
0
votes
1answer
71 views

AVL Tree: solving a StackOverflowError

Basically, I am implementing an AVL tree by reading a set of integers from a text file and then populate the tree by using the add() method. Also, the program is supposed to print in order the set of ...
0
votes
0answers
82 views

AVL Tree Rebalancing and Traversing Errors in C

CODE: int main(void) //AVL Tree { TP TreeP=(TP)malloc(sizeof(struct AVLTree)); //TP is a Pointer to a Tree Structure InitializeTree(TreeP); //Initializes the Tree FILE * FP; int I=0; ...
0
votes
3answers
191 views

Binary Search Tree Insert Function In C

For future viewers of this question who might need help in this type of problem: I fixed it by combining the 2 functions (InsertNode() and InTree()) I'm not sure if this is bad practice and I'll get ...
1
vote
1answer
94 views

C++ AVL tree recalculate height

im working on an implimentation of an AVL tree, and im having problems with my recalculate height function. When i call it i pass in the root of the tree and a variable that has a value of 1. ive ...
1
vote
1answer
131 views

AVL Tree Rebalancing in C++

I'm working on an AVL tree. I think I've got all of the rotate functions working correctly. I have a rotateleft, rotateright, rotateleftright, and rotaterightleft function. They all take a node as a ...
5
votes
0answers
130 views

Statistical performance of purely functional maps and sets

Given a data structure specification such as a purely functional map with known complexity bounds, one has to pick between several implementations. There is some folklore on how to pick the right one, ...
1
vote
0answers
81 views

Implementing a dictionary using an AVL Tree findAll() method

I am trying to implement a Dictionary ADT using an AVL tree and am having trouble with the findAll(K key) method. I know how to do this using the entries() method and iterating through each one but I ...
1
vote
1answer
69 views

simple AVL tree delete is only working sometimes

I'm working on an AVL tree. It seems the my remove only works correctly some of the time. I built a tree that looks like this f / \ e j / / \ a h ...
0
votes
2answers
90 views

Why does this method cause an Infinite Recursive call?

I'm struggling to understand why this class is not functioning. It was part of an assignment for a course on Data Structures(EDIT: The deadline for the assignment has passed, I just want to figure it ...
3
votes
2answers
61 views

Solving the recurrence relation for number of nodes in an AVL tree?

Suppose that we have this recurrence relation, which comes up in the analysis of AVL trees: F1 = 1 F2 = 2 Fn = Fn - 1 + Fn - 2 + 1 (where n ≥ 3) How would you solve this recurrence to get a ...
0
votes
1answer
101 views

Using an AVL tree in java

I have the AVLNode and AVLTree classes, i have the methods to remove and insert nodes and i have a print method. I want to use these methods to create a AVL tree. On input i want to write "Add x" and ...
2
votes
4answers
175 views

AVL tree sample explanation

I am reading some sample source code on AVL trees and part of the implementation is this following function: AvlTree MakeEmpty( AvlTree T ) { if( T != NULL ) { MakeEmpty( T->Left ...
1
vote
2answers
75 views

weight-unbalanced AVL tree

Believing the wikipedia article: http://en.wikipedia.org/wiki/AVL_tree AVL trees are height-balanced, but in general not weight-balanced nor μ-balanced;[4] that is, sibling nodes can have hugely ...
0
votes
0answers
44 views

Search objects in AVLTree

I'm adding Artist objects to an AVLTree as so: tree.InsertItem(new Artist(textBox.Text, Albums)); textBox.Text is the name of the Artist, and Albums is a LinkedList<string> I want to ...
0
votes
0answers
26 views

Storing instance of Artist class in AVLTree

I'm storing objects of my Artist class in AVLTree as follows: tree.InsertItem(new Artist (textBox.Text, Albums)); My question is, is it possible to change the line of code to give each object a ...
0
votes
2answers
73 views

Passing a AVLTree between forms

There is another question that is very similar to mine however after reading it i still cannot get it to work. I have two forms , MainForm and SecondForm and a few other classes, i need an instance ...
1
vote
1answer
250 views

AVL tree delete

Find an example AVL tree such that removing a single (speci fic) value from the tree causes rebalancing to occur starting at two diffe rent nodes. I have this as my homework question. I know what AVL ...
0
votes
1answer
111 views

Debugging a Map backed by an AVL tree?

This is one of three trees I am using to parse text and print out every unique word, the line numbers it appears on, and the number of times it appears. I have already used a hash and tree map and ...
1
vote
1answer
98 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 ...
-2
votes
1answer
174 views

Storing an Author class in an AVL tree

I'm creating a software product which is an AVLTree containing the details of Authors. The Author class contains: Name, Year Of Publish and List of Books (using LinkedList<> collection). The Author ...
1
vote
2answers
65 views

Class Cast Exception generated while using generics in Java

I am working on a homework assignment and I cannot figure out why I keep getting a class cast exception whenever I try to run my code. I think it is due to the (path.get(i)) but I can not seem to ...
0
votes
2answers
142 views

implementation of AVL tree toString()

This is my toString() but it doesn't work properly public String toString() { StringBuilder str = new StringBuilder("{"); traverse(root, str); str.append("}"); return ...
0
votes
0answers
48 views

How can i print between two specific entries of an AVL Tree in O (K Log N) time

so i need two print between two objects found in the avl tree where the first object is key1 and the second object is key2 and key1 < key 2 in O(K Log N) where K is the number of printed keys? the ...
0
votes
0answers
44 views

Multiple insert into an AVL tree

I have an AVL tree from which I know that there exist two sets of keys, one set where all keys are less than the keys from the sorted array and another where all keys are greater than the keys from ...
2
votes
2answers
308 views

Why red-black tree based implementation for java TreeMap?

The third paragraph of wikipedia's article on AVL trees says: "Because AVL trees are more rigidly balanced, they are faster than red-black trees for lookup-intensive applications." So, shouldn't ...
1
vote
0answers
63 views

Get median from avl tree?

If you have an avl tree, whats the best way to get the median from it? The median would be defined as the element with index ceil(n/2) (index starts with 1) in the sorted list. So if the list was 1 3 ...
1
vote
1answer
134 views

How to augment an AVL tree?

I want to augment an avl tree to add extra properties to each node such as number of nodes it contains (i.e. in its subtree). From this avl java implementation code here ...
0
votes
4answers
898 views

Binary search tree over AVL tree

As far as I know the time complexity between AVL trees and Binary Search Trees are the same in average case, with AVLs beating BSTs in worst case scenarios. This gives me a hint that AVLs are always ...
2
votes
0answers
62 views

A sequence that forms the same AVL and splay trees?

Is there such a sequence of numbers (1-7, all numbers used, only once each), that would form equal AVL and splay tree?
2
votes
2answers
461 views

Balancing AVL Trees

I am having trouble balancing AVL Trees. I have searched high and low for steps to how to balance them and I just can't get anything useful. I know there are 4 kinds: Single Left Rotation Single ...
1
vote
2answers
117 views

Computational Complexity of TreeSet methods in Java

Is the computational complexity of TreeSet methods in Java, same as that of an AVLTree? Specifically, I want to know the computational complexity of the following methods: 1.add 2.remove 3.first ...
1
vote
1answer
117 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
3answers
106 views

Logarithmic condition of AVL Tree

For my AVL Tree implementation, I have a node which has a left, right and parent pointer, and a balance variable. Each time I am inserting a new node and carrying out the required rotation, I am ...
4
votes
1answer
113 views

Why does this AVL tree implementation pack bits into pointers in 64-bit but not 32-bit implementations?

In this AVL tree implementation from Solaris, struct avl_node is defined in an obvious way if compiling for 32-bit library. But for 64-library a pointer to node's parent is packed into "avl_pcb". And ...
0
votes
0answers
60 views

avl insertion stack overflow/avl rotations trouble

I have been trying to implement an AVL tree in Java and am having pointer trouble when balancing the tree. A recent change in the code (implementing the null checks shown in rotations) has also caused ...
0
votes
1answer
77 views

Inheriting from a class with a private inner classes C++

So I have an assignment in which I need to use a rank binary tree. I've already implemented a template AVL tree (C++) a while back so I thought of using it as a basis and adding to it. Since I don't ...
7
votes
3answers
461 views

Perfect Balanced Binary Search Tree

I have an theoretical question about Balanced BST. I would like to build Perfect Balanced Tree that has 2^k - 1 nodes, from a regular unbalanced BST. The easiest solution I can think of is to use a ...
-4
votes
1answer
117 views

C#: How to parse the AVL data packets coming from the Device FM4100 get the output as hexadecimal value

Is my parsing method worng? I got like this avl data format: 08010013ba7695698059a9f580eb76a140280048b045021f0101c70005e Codec ID :08 Count:01 strTimeStamp:0013ba7695698 Longitude:59a9f580 Latitude ...
2
votes
4answers
67 views

Fastest way to find count of words, that starts with specified string (words are stored in AVL tree)

I've implemented my own AVL tree and I'm using it as a dictionary. I'm wondering, what would be the fastest way to count all the words that starts with some string. eg: string prefix = "fa"; ...

1 2 3 4