The tree-balancing tag has no wiki summary.
1
vote
1answer
51 views
Amortized cost for a (fixed) balanced tree
Suppose I have a constant (once built doesn't change) balance tree with N nodes, every internal node having p children. Obviously the worse case scenario for accessing a node is logp(N). But what ...
0
votes
0answers
45 views
Balancing “short” k-ary trees
Without being extremely specific nor handwaving:
I care to build a tree of height at most 3. The reason is that there is an underlying WSN and I wish to keep the tree as short-depthed as possible to ...
0
votes
0answers
186 views
Recursion updates in add method for AVL trees java
So I am creating an AVL tree, balanced BST, and I need a way to recursively go up the tree to update the BF and height of the node while not having a parent to call. here is my add method. Thanks for ...
1
vote
2answers
368 views
AVL Binary Heap(Balanace test)
I'm trying to achieve a testing if a tree is AVL tree or not using prolog.
I've made a height test that works for the tests I've done so far but my balancing test is still not going strong.
This is ...
2
votes
1answer
401 views
Splay tree rotation algorithm: Why use zig-zig and zig-zag instead of simpler rotations?
I don't quite understand why the rotation in the splay tree data structure is taking into account not only the parent of the rating node, but also the grandparent (zig-zag and zig-zig operation). Why ...
0
votes
1answer
494 views
Balancing a BST with weights
I'm building a recursive Java method to balance a binary search tree (using ints, but designed generic) using weights in each node. For my purpose, the weight of a node is defined as the number of ...
0
votes
0answers
168 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 ...
6
votes
3answers
211 views
Are there versions of the C++ STL's associative data structures optimized for numerous partial copies?
I have a large tree that grows as my algorithm progresses. Each node contains set, which I suppose is implemented as balanced binary search tree. Each node's set shall remain fixed after that node's ...
2
votes
1answer
502 views
Prolog - Balanced tree or not
I want to write a program that tells me if a tree is balanced or not. In this case balanced means same height or a height difference of 1.
This is what I've written so far but it doesn't work for the ...
4
votes
3answers
256 views
Left balanced binary trees
I am reading a book on data structures and it says that a left balanced binary tree is a tree in which the leaves only occupy the leftmost positions in the last level.
This seemed a little vague to ...
0
votes
1answer
2k views
Definition balanced binary tree [closed]
What is the definition of balanced binary tree? How the balancing is done with left and right rotation operations (please in detail on an example)?
0
votes
2answers
283 views
Doubt Regarding Function to check whether a tree is balanced or not?
I read in a book named "Coding Interview Cracked", that to check whether a BST is balanced or not, just find out the difference between the maximum and minimum height but I not sure whether it is 100% ...
1
vote
3answers
396 views
Balancing String based Binary Search Tree (For Spellchecking)
Update: I can't get "Balancing" to work, because I cannot get "doAVLBalance" to recognize the member functions "isBalanced()", "isRightHeavy()", "isLeftHeavy". And I don't know why! I tried Sash's ...
2
votes
1answer
711 views
Modify a BinarySearchTree to be balanced (AVL) : Java
I need to modify a Binary Search Tree that I created to assure that it is balanced. I only need to modify the add and remove methods, according to my instructions. Here's what I currently have:
...
1
vote
1answer
377 views
Balance BST tree manually
I've done balancing of the tree(bst>avl) requested by hand and I wonder that it was really easy, so I am not sure whether I've done it correctly.
a
/ \
b e3
/ \
e1 e2
...
13
votes
4answers
1k views
What Self Balancing Tree is simplest in Functional Programming?
I'm designing a self balancing tree in Haskell. As an exercise and because it is nice to have in your back hand.
Previously in C and Python I preferred Treaps and Splay Trees due to their simple ...
0
votes
2answers
1k views
How to balance binary tree in PHP without rotating parent?
I will try to make myself as clear as possible. Based from Adjacency List Model: http://articles.sitepoint.com/article/hierarchical-data-database
I need a way to balance this tree
0
/ \
...