| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Name | Name | Last commit date | ||
|---|---|---|---|---|
This C++ program implements a balanced B-tree data structure with basic operations like insertion and range search.
To compile: make all To execure: make run To clean: make clean
Note use valgrind to verify proper memory deallocation
This program defines a balanced B-tree structure and provides methods for insertion and searching within a specified range. The B-tree is a self-balancing tree data structure that maintains sorted data and allows searches, sequential access, insertions, and deletions in logarithmic time. The tree is built while generating the keys.
To use this implementation, include the necessary header files and use the BalancedTree class to perform operations on the B-tree.
| Back | FazBrowse Home | New Git URL |