Skip to content

simple implementation based on algorithm metioned in Introduction to Algorithms

Notifications You must be signed in to change notification settings

abhinav4987/btree

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 

Repository files navigation

Btree

B-Tree is a self-balancing search tree. In most of the other self-balancing search trees (like AVL and Red-Black Trees), it is assumed that everything is in main memory.The main idea of using B-Trees is to reduce the number of disk accesses. Most of the tree operations (search, insert, delete, max, min, ..etc ) require O(h) disk accesses where h is the height of the tree. B-tree is a fat tree. The height of B-Trees is kept low by putting maximum possible keys in a B-Tree node.

to run the above program, use download the btree folder and run the following command :

$ g++ main.cpp delete.cpp insert.cpp print.cpp search.cpp -o run

About

simple implementation based on algorithm metioned in Introduction to Algorithms

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages