b-tree

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Is it any class which implements b-tree in .NET 2005?

How implements b-tree if this class not exists in .NET 2005?
 
Is it any class which implements b-tree in .NET 2005?

Nope. But if you really meant a binary search tree then the
SortedDictionary fits the bill. It's implemented as a red black tree.
How implements b-tree if this class not exists in .NET 2005?

Sorry, you'll have to google for the different algorithms. I've never
needed to implement my own since they have properties that make them
more useful when dealing with secondary storage devices (e.g. file
systems and databases).
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads

A Tree 5
A Seasonal Tale 2
Tree Class 3
problem with parent.parent 0
Drive Compare 3
Creating a tree with generics 2
How to fill tree view in c#.net web application. 1
Folder tree structure 1

Back
Top