Skip to content

Latest commit

 

History

History
21 lines (12 loc) · 513 Bytes

README.md

File metadata and controls

21 lines (12 loc) · 513 Bytes

B+ Tree Implementation in C#

Purpose

Thie is a simple B+ tree class that uses lists for keys and values. The main class is Node. This is a console-mode application.

Install

Open with Visual Studio 2022 and above to compile.

Unit Testing

Unit Testing is provided.

References

1. Introduction to Algorithms, Third Edition, Thomas M. Cormen, Charles E. Leiserson, Ronald Rivest, Clifford Stein, MIT Press, 2009.

2. Data Structures the Fun Way, Jeremy Kubica, No Starch Press, 2022.