简体   繁体   English

有谁知道我在哪里可以找到基于文件的c#多路B树类?

[英]Does anyone know where I might find a file based multi-way B-Tree Class for c#?

I need to implement a file based multi-way B-Tree Class for c#. 我需要为c#实现一个基于文件的多路B-Tree类。 There is similar functionality available for C++ and C but I want to use it in C#. C ++和C有类似的功能,但我想在C#中使用它。 It also need to be available as source code as I wish to use with some alternative .NET implementations like MonoTouch. 它也需要作为源代码提供,因为我希望与MonoTouch等一些替代.NET实现一起使用。

If anyone knows of a non file based Multiway b-Tree then this could adapted faily easily to be file based. 如果有人知道基于非文件的Multiway b-Tree那么这可以很容易地适应基于文件。 You make each Multiway page/array of nodes a record/sector in the file. 您将每个Multiway页面/节点数组作为文件中的记录/扇区。 And save them when they change. 并在他们改变时保存它们。

Anyone? 任何人?

From what I've seen the B-Tree isn't widely implemented in C#, but I could be wrong. 从我所看到的B-Tree并没有在C#中广泛实现,但我可能是错的。

However a quick search , turned up this implementation and the comments look positive. 然而, 快速搜索 ,发现这个实现和评论看起来是积极的。

I scrounged up some stuff of CodePlex: 我找到了CodePlex的一些东西:

创建一个调用C / C ++代码的C#包装器

这似乎是您正在寻找的: 用于SCM,Java,C#和C的WB B树数据库

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

相关问题 有谁知道我在哪里可以找到一个使用C#的OFX wsdl文件的好例子? - Does anyone know where I can find a good example of using the OFX wsdl file with C#? 有谁知道从C#分页调用GetSchema的方法吗? - Does anyone know of a way to paginate a call to GetSchema from C#? 有谁知道用C#实现原子动作的任何方法吗? - Does anyone know any way of implementing an atomic action in C#? c#中基于文件系统的B + Tree实现 - File system based B+ Tree implementation in c# C# Collatz - 有人知道修复方法吗? - C# Collatz - Does anyone know a fix? 绘制b树的算法 - Algorithm for drawing b-tree 有谁知道哪里有c#代码或dll可以生成样本信用卡号 - Does anyone know where there is c# code or a dll which can generate sample credit card numbers 有谁知道我在哪里可以找到通用Windows专用网络(客户端和服务器)代码示例? - Does anyone know where I can find a Universal Windows Private Network (Client & Server) code Example? 有谁知道如果 B 是具体类,是否支持 Autofac 隐式关系类型 A 需要所有类型的 B? - Does anyone know if the Autofac implicit relationship type, A needs all the kinds of B, is supported if B is a concrete class? C#类是否知道实例化了哪个文件? - Does a C# class know what file instantiated it?
 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM