Tagged Questions

3
votes
2answers
189 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
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
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
1answer
530 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? ...
1
vote
2answers
636 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
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
8answers
355 views

C++ Force Template Parameter

I want this code to be possible. template<typename K, typename T, typename Comparer> class AVLTree { ... void foo() { ... int res = Comparer::compare(key1, key2); ... ...
-2
votes
1answer
366 views

AVL trees Algorithm-Insert and deleting

I had an algorithm assignment, which gave me the code, I would really appreciate it if someone helped me understand it and help me with the insert and delte parts in the code. #include ...