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
0answers
11 views

Finding successor and predecessor of heap / BST/ AVL tree

Is there any systematical ways for each of them? For AVL tree, 5 // \ 3 6 // \ / \ 1 4 7 8 \ / \ 2 7.5 9 On the left sub tree For a right ...
1
vote
1answer
19 views

AVL tree with a sorted list?

After reading about AVL trees I can't get one question out of my head. If we have a sorted list of numbers, e.g. [1,2,3,4,5] and we insert them into the AVL tree, wouldn't the tree stay unblanaced ...
-1
votes
0answers
16 views

How to use javascript AVL tree? [closed]

I want to use an AVL tree data structure in javascript, and I found a script online for it. https://gist.github.com/viking/2424106 However I am confused how to use it. There is no examples or ...
0
votes
1answer
23 views

what is the Balance factor in AVL tree

I'm making presentation for AVL tree, can't understand what is the balance factor. please give me the link or any thing that I can understand graphically how height of an AVL tree's height effect
-1
votes
1answer
23 views

what is the use of AVL Tree? Please Explain [closed]

I'm making a presentation on AVL tree with complete detail of AVL but can't find the use of AVL properly please explain
0
votes
1answer
59 views

Searching a node with balance factor of -2 in an AVL tree

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. void ...
2
votes
2answers
103 views

Boost Intrusive/binary search trees

I'm looking for a binary search tree for a Voronoi tessellation algorithm (Fortune's algorithm; a darned non-trivial task in itself, methinks), so of course, I thought I'd have a look at Boost. Boost ...
0
votes
0answers
14 views

AVL Tree sort word or sentence + mergesort

i started learning algorithm and structural data, and i don't know how to make an AVL Tree function with input from word or sentence that already sorted using mergesort: First user input word or ...
0
votes
0answers
29 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
1answer
34 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
39 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
2answers
71 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
42 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
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
22 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
88 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
144 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
95 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
49 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
82 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
111 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
245 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
126 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
179 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 ...
7
votes
0answers
157 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
99 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
105 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
98 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
69 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
132 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
296 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
95 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
45 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
74 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
316 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
123 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
117 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
198 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
76 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
189 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
52 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
46 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
426 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
70 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
143 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
1k 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
69 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
604 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
138 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 2 3 4