https://github.com/speedycraftah/b-tree
An implementation of a B-tree in JavaScript/C++ with a simple GUI to visualise and interact with them.
https://github.com/speedycraftah/b-tree
algorithms b-tree b-tree-implementation cpp javascript learning visualization
Last synced: 3 months ago
JSON representation
An implementation of a B-tree in JavaScript/C++ with a simple GUI to visualise and interact with them.
- Host: GitHub
- URL: https://github.com/speedycraftah/b-tree
- Owner: SpeedyCraftah
- License: mit
- Created: 2023-02-07T21:43:07.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2023-02-07T22:00:52.000Z (almost 3 years ago)
- Last Synced: 2025-10-14T22:05:58.589Z (3 months ago)
- Topics: algorithms, b-tree, b-tree-implementation, cpp, javascript, learning, visualization
- Language: JavaScript
- Homepage:
- Size: 384 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: license
Awesome Lists containing this project
README
# B-tree implementation in JavaScript and partially in C++
- I originally wrote this in JavaScript while learning to programatically implement a B-tree after learning it through articles and videos as well as practicing them through flow chart graphs.
- I also started writing it in C++ where I implemented an insert and has function.
- I was going to use them for indexing in my database project, but realised I do not need B-trees, but do need B+ trees which are easier to implement.
- Nethertheless, it was a fun experience learning B-trees and optimising it and hope the code I wrote serves a purpose one day.
