Skip to content

LandSharkFive/BPlusTree

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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.