An open API service indexing awesome lists of open source software.

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.

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.

![image](https://user-images.githubusercontent.com/45142584/217375856-845c5d72-fc61-41de-824b-ce428af1f6c0.png)