B+ Tree Dbms
B+ Tree Dbms
Prepared by
Hamid ali Dana
CS & IT Ajk university Mzd
From Gilgit Baltistan
What is b+ tree
A B+ tree is a data structure often used in the
implementation of database indexes. Each
node of the tree contains an ordered list of keys
and pointers to lower level nodes in the tree.
2
==2,4,7,10,17,21,28
2 4
==2,4,7,10,17,21,28
2 4 7
==2,4,7,10,17,21,28
2 4 7 10
==2,4,7,10,17,21,28
4 7
2 4 7 10 17
==2,4,7,10,17,21,28
4 7 10
2 4 7 10 17 21
==2,4,7,10,17,21,28
4 10 17
2 4 7 10 17 21 28
Deletion Process:
Deletion of 28:
7
4 10 17
2 4 7 10 17 21 28
Deleted 28:
4 7 10
2 4 7 10 17 21
Deletion of 4:
4 7 10
2 4 7 10 17 21
Deleted 4:
7 10
2 7 10 17 21
Deletion of 7:
7 10
2 7 10 17 21
Deleted 7:
10
2 10 17 21
Deletion of 2:
10
2 10 17 21
Deleted 2:
10 17 21
Thank you