C/C++: How to store data in a file in B tree

前端 未结 3 618
暗喜
暗喜 2021-02-06 06:22

It appears to me that one way of storing data in a B-tree as a file can be done efficiently with C using binary file with a sequence (array) of structs, with each struct represe

3条回答
  •  南笙
    南笙 (楼主)
    2021-02-06 06:34

    You can use Berkley DB as well. It works well with C programs and implements B+ tree.

提交回复
热议问题