G Guest Mar 13, 2007 #1 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? How implements b-tree if this class not exists in .NET 2005?
B Brian Gideon Mar 13, 2007 #2 Is it any class which implements b-tree in .NET 2005? Click to expand... 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? Click to expand... 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).
Is it any class which implements b-tree in .NET 2005? Click to expand... 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? Click to expand... 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).