b-tree

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Guest's Avatar

    #1

    b-tree

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

    How implements b-tree if this class not exists in .NET 2005?


  • Brian Gideon

    #2
    Re: b-tree

    On Mar 13, 2:51 pm, <kica...@wp.plw rote:
    Is it any class which implements b-tree in .NET 2005?
    >
    Nope. But if you really meant a binary search tree then the
    SortedDictionar y 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).

    Comment

    Working...