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 read up on various questions and articles about performance of B-Trees, AVL-Trees and Red-Black Trees and can't really see much difference between them performance wise.

What tree structure would people recommend and why? Ideally it should have an existing .Net implementation available though I'm not averse to implementing my own if necessary

link|improve this question

feedback

2 Answers

up vote 5 down vote accepted

A good hashtable is almost always faster than a tree. The great advantage of the tree is that you can use it to query ranges and for ordering. So if you don't need these features I'd rather look into optimizing your hash based solution.

And AFAIK SortedDictionary<K,V> is tree based.

link|improve this answer
I did suspect that, I've done some testing where my data is in MongoDB which uses B-Tree indices and even accounting for the overhead of communicating with MongoDB performance is worse. In some situations it would be useful to have the data in order but the problem is that the order is not defined in advance so maybe a tree won't gain me anything :-S – RobV Oct 14 '10 at 11:24
The great advantage of a tree is that it does not require a hashing algorithm. Hashing algorithms are almost invariably untested and unexamined against real data. – Blank Xavier Oct 15 '10 at 14:18
@blank this is a misnomer, auto-generated hashing algorithms based off properties in .NET are tried and true. – Lucas B Oct 15 '10 at 14:23
Surely also if the things I want to store are objects then I need a hashing/key generating function anyway as relying on value comparison would make it far too slow – RobV Oct 18 '10 at 11:26
feedback

A binary tree is not balanced. Do not use it.

An AVL tree is better balanced than a red-black tree; it has faster lookup.

Much more importantly, the AVL algorithm is straightforward and comprehendable. This is, IME, not the case for the red-black algorithm. You cannot implement algorithms you do not understand, or rather, you can implement them blindly, which is properly tantamount in my view to -not- being able to implement them.

link|improve this answer
Isn't any tree where each node has up to 2 children a binary tree? I'd view an AVL tree as a special case of a binary tree. – CodeInChaos Oct 15 '10 at 14:37
Interesting. I find red-black trees easier to understand than AVL trees. Perhaps it's because I learned them first. – Ken Oct 15 '10 at 14:39
1  
When you say understand, do you -truely- understand them, e.g. the underlying reasons the rules work? or do you mean that you know the set of rules that must be applied? I have -never- seen an explanation of why the RB rules -work-. – Blank Xavier Oct 15 '10 at 14:44
Blank: When you say "rules", do you mean "procedures for insert/delete", or "invariants"? If I had to think about procedures, I wouldn't even be able to make an ordinary binary search tree. I just remember the invariants, which do make perfect sense to me. – Ken Oct 16 '10 at 15:15
Ken: by rules, I mean the procedures for insert/delete - the five or so steps that are followed, as you move up the tree from the inserted node. I don't mean remembering the function code itself. But those procedures - yes, they in and of themselves are perfectly sensible - check this is red, move that if not, etc. But the question is why do they work to give you a balanced tree? With the AVL algorithm, I know why. I can comprehend the underlying reasons it must all work. I cannot comprehend the RB algorithm and I have never seen an explanation of it - only a listing of the rules. – Blank Xavier Oct 16 '10 at 17:01
show 1 more comment
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.