Tagged Questions

6
votes
3answers
1k views

When to choose RB tree, B-Tree or AVL tree?

As a programmer when should I consider using a RB tree, B- tree or an AVL tree? What are the key points that needs to be considered before deciding on the choice? Can someone please explain with a ...
3
votes
1answer
172 views

Algorithm for the special case of rank tree

I'm trying to create some rank tree based on AVL tree with special requirements, lets assume that I have AVL tree with nodes, each node has 2 fields: id, priority my AVL tree is sorted by id, also ...
2
votes
3answers
187 views

How to implement AVL tree without parent pointer?

I saw some articles about the implementation of AVL's rebalance() function. After each insertion, we should check the insertion Node's ancestors for balance. So I think, in order to check ancestors' ...
2
votes
2answers
119 views

What Tree structure should I use for indexing?

I'm thinking of experimenting with using a tree-structure for indexing as I want to test whether it is faster than my current indexing implementation which is in essence a hash based lookup. I've ...
1
vote
1answer
112 views

Comparison about balanced binary search trees

I've read some Q&As about self-balancing binary trees, but I'm not quite familiar with all of them. The first one of them I got to know is AVL, the second is Red-Black tree. There are something ...
1
vote
1answer
715 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 ...
0
votes
0answers
85 views

Printing diagram of an AVL Tree in Java

I need to print a diagram of an AVL tree in java, the only requirements are I need to use an iterator and cannot use arraylist...arbitrary aspect from my prof. Because it is AVL, I can't seem to find ...
0
votes
1answer
292 views

avl tree help dictionary implementation

i am currently learning c and algorithms. I have implemented a mock up dictionary as a tree and would like to take my course work a bit further and use an avl tree. #include <stdio.h> ...