B trees are extended binary search trees that are specialized in m-way searching, since the order of B trees is ‘m’. Order of a tree is defined as the maximum number of children a node can accommodate. Therefore, the height of a b tree is relatively smaller than the height of AVL tree and RB tree.
They are general form of a Binary Search Tree as it holds more than one key and two children.
The various properties of B trees include −
- Every node in a B Tree will hold a maximum of m children and (m-1) keys, since the order of the tree is m.
- Every node in a B tree, except root and leaf, can hold at least m/2 children
- The root node must have no less than two children.
- All the paths in a B tree must end at the same level, i.e. the leaf nodes must be at the same level.
- A B tree always maintains sorted data.

B trees are also widely used in disk access, minimizing the disk access time since the height of a b tree is low.
Note − A disk access is the memory access to the computer disk where the information is stored and disk access time is the time taken by the system to access the disk memory.
Basic Operations of B Trees
The operations supported in B trees are Insertion, deletion and searching with the time complexity of O(log n) for every operation.
Insertion operation
The insertion operation for a B Tree is done similar to the Binary Search Tree but the elements are inserted into the same node until the maximum keys are reached. The insertion is done using the following procedure −
Step 1 − Calculate the maximum (m−1) and, minimum (⌈m2⌉−1) number of keys a node can hold, where m is denoted by the order of the B Tree.

Step 2 − The data is inserted into the tree using the binary search insertion and once the keys reach the maximum number, the node is split into half and the median key becomes the internal node while the left and right keys become its children.

Step 3 − All the leaf nodes must be on the same level.

The keys, 5, 3, 21, 9, 13 are all added into the node according to the binary search property but if we add the key 22, it will violate the maximum key property. Hence, the node is split in half, the median key is shifted to the parent node and the insertion is then continued.

Another hiccup occurs during the insertion of 11, so the node is split and median is shifted to the parent.

While inserting 16, even if the node is split in two parts, the parent node also overflows as it reached the maximum keys. Hence, the parent node is split first and the median key becomes the root. Then, the leaf node is split in half the median of leaf node is shifted to its parent.

The final B tree after inserting all the elements is achieved.
Example
Following are the implementations of this operation in various programming languages −
// C Program for B trees #include <stdio.h>#include <stdlib.h>structBTree{//node declarationint*d;structBTree**child_ptr;int l;int n;};structBTree*r =NULL;structBTree*np =NULL;structBTree*x =NULL;//creation of nodestructBTree*init(){int i;
np =(structBTree*)malloc(sizeof(structBTree));//order 6
np->d =(int*)malloc(6*sizeof(int));
np->child_ptr =(structBTree**)malloc(7*sizeof(structBTree*));
np->l =1;
np->n =0;for(i =0; i <7; i++){
np->child_ptr[i]=NULL;}return np;}//traverse the treevoidtraverse(structBTree*p){printf("\n");int i;for(i =0; i < p->n; i++){if(p->l ==0){traverse(p->child_ptr[i]);}printf(" %d", p->d[i]);}if(p->l ==0){traverse(p->child_ptr[i]);}printf("\n");}//sort the treevoidsort(int*p,int n){int i, j, t;for(i =0; i < n; i++){for(j = i; j <= n; j++){if(p[i]> p[j]){
t = p[i];
p[i]= p[j];
p[j]= t;}}}}intsplit_child(structBTree*x,int i){int j, mid;structBTree*np1,*np3,*y;
np3 =init();//create new node
np3->l =1;if(i ==-1){
mid = x->d[2];//find mid
x->d[2]=0;
x->n--;
np1 =init();
np1->l =0;
x->l =1;for(j =3; j <6; j++){
np3->d[j -3]= x->d[j];
np3->child_ptr[j -3]= x->child_ptr[j];
np3->n++;
x->d[j]=0;
x->n--;}for(j =0; j <6; j++){
x->child_ptr[j]=NULL;}
np1->d[0]= mid;
np1->child_ptr[np1->n]= x;
np1->child_ptr[np1->n +1]= np3;
np1->n++;
r = np1;}else{
y = x->child_ptr[i];
mid = y->d[2];
y->d[2]=0;
y->n--;for(j =3; j <6; j++){
np3->d[j -3]= y->d[j];
np3->n++;
y->d[j]=0;
y->n--;}
x->child_ptr[i +1]= y;
x->child_ptr[i +1]= np3;}return mid;}voidinsert(int a){int i, t;
x = r;if(x ==NULL){
r =init();
x = r;}else{if(x->l ==1&& x->n ==6){
t =split_child(x,-1);
x = r;for(i =0; i < x->n; i++){if(a > x->d[i]&& a < x->d[i +1]){
i++;break;}elseif(a < x->d[0]){break;}else{continue;}}
x = x->child_ptr[i];}else{while(x->l ==0){for(i =0; i < x->n; i++){if(a > x->d[i]&& a < x->d[i +1]){
i++;break;}elseif(a < x->d[0]){break;}else{continue;}}if(x->child_ptr[i]->n ==6){
t =split_child(x, i);
x->d[x->n]= t;
x->n++;continue;}else{
x = x->child_ptr[i];}}}}
x->d[x->n]= a;sort(x->d, x->n);
x->n++;}intmain(){int i, n, t;insert(10);insert(20);insert(30);insert(40);insert(50);printf("Insertion Done");printf("\nB tree:");traverse(r);return0;}
Output
Insertion Done B tree: 10 20 30 40 50
Deletion operation
The deletion operation in a B tree is slightly different from the deletion operation of a Binary Search Tree. The procedure to delete a node from a B tree is as follows −
Case 1 − If the key to be deleted is in a leaf node and the deletion does not violate the minimum key property, just delete the node.


Case 2 − If the key to be deleted is in a leaf node but the deletion violates the minimum key property, borrow a key from either its left sibling or right sibling. In case if both siblings have exact minimum number of keys, merge the node in either of them.


Case 3 − If the key to be deleted is in an internal node, it is replaced by a key in either left child or right child based on which child has more keys. But if both child nodes have minimum number of keys, theyre merged together.


Case 4 − If the key to be deleted is in an internal node violating the minimum keys property, and both its children and sibling have minimum number of keys, merge the children. Then merge its sibling with its parent.


Example
Following are the implementations of this operation in various programming languages −
//deletion operation in BTree#include <stdio.h>#include <stdlib.h>#define MAX 3#define MIN 2structBTreeNode{int item[MAX +1], count;structBTreeNode*linker[MAX +1];};structBTreeNode*root;// creating nodestructBTreeNode*createNode(int item,structBTreeNode*child){structBTreeNode*newNode;
newNode =(structBTreeNode*)malloc(sizeof(structBTreeNode));
newNode->item[1]= item;
newNode->count =1;
newNode->linker[0]= root;
newNode->linker[1]= child;return newNode;}// adding value to the nodevoidaddValToNode(int item,int pos,structBTreeNode*node,structBTreeNode*child){int j = node->count;while(j > pos){
node->item[j +1]= node->item[j];
node->linker[j +1]= node->linker[j];
j--;}
node->item[j +1]= item;
node->linker[j +1]= child;
node->count++;}// Spliting the nodevoidsplitNode(int item,int*pval,int pos,structBTreeNode*node,structBTreeNode*child,structBTreeNode**newNode){int median, j;if(pos > MIN)
median = MIN +1;else
median = MIN;*newNode =(structBTreeNode*)malloc(sizeof(structBTreeNode));
j = median +1;while(j <= MAX){(*newNode)->item[j - median]= node->item[j];(*newNode)->linker[j - median]= node->linker[j];
j++;}
node->count = median;(*newNode)->count = MAX - median;if(pos <= MIN){addValToNode(item, pos, node, child);}else{addValToNode(item, pos - median,*newNode, child);}*pval = node->item[node->count];(*newNode)->linker[0]= node->linker[node->count];
node->count--;}// Set the value in the nodeintsetValueInNode(int item,int*pval,structBTreeNode*node,structBTreeNode**child){int pos;if(!node){*pval = item;*child =NULL;return1;}if(item < node->item[1]){
pos =0;}else{for(pos = node->count;(item < node->item[pos]&& pos >1); pos--);if(item == node->item[pos]){printf("Duplicates not allowed\n");return0;}}if(setValueInNode(item, pval, node->linker[pos], child)){if(node->count < MAX){addValToNode(*pval, pos, node,*child);}else{splitNode(*pval, pval, pos, node,*child, child);return1;}}return0;}// inserting elements in BTreevoidinsert(int item){int flag, i;structBTreeNode*child;
flag =setValueInNode(item,&i, root,&child);if(flag)
root =createNode(i, child);}// Copy the successorvoidcopySuccessor(structBTreeNode*myNode,int pos){structBTreeNode*dummy;
dummy = myNode->linker[pos];for(; dummy->linker[0]!=NULL;)
dummy = dummy->linker[0];
myNode->item[pos]= dummy->item[1];}// Remove the value in BTreevoidremoveVal(structBTreeNode*myNode,int pos){int i = pos +1;while(i <= myNode->count){
myNode->item[i -1]= myNode->item[i];
myNode->linker[i -1]= myNode->linker[i];
i++;}
myNode->count--;}// right shiftvoidrightShift(structBTreeNode*myNode,int pos){structBTreeNode*x = myNode->linker[pos];int j = x->count;while(j >0){
x->item[j +1]= x->item[j];
x->linker[j +1]= x->linker[j];}
x->item[1]= myNode->item[pos];
x->linker[1]= x->linker[0];
x->count++;
x = myNode->linker[pos -1];
myNode->item[pos]= x->item[x->count];
myNode->linker[pos]= x->linker[x->count];
x->count--;return;}// left shiftvoidleftShift(structBTreeNode*myNode,int pos){int j =1;structBTreeNode*x = myNode->linker[pos -1];
x->count++;
x->item[x->count]= myNode->item[pos];
x->linker[x->count]= myNode->linker[pos]->linker[0];
x = myNode->linker[pos];
myNode->item[pos]= x->item[1];
x->linker[0]= x->linker[1];
x->count--;while(j <= x->count){
x->item[j]= x->item[j +1];
x->linker[j]= x->linker[j +1];
j++;}return;}// Merge the nodesvoidmergeNodes(structBTreeNode*myNode,int pos){int j =1;structBTreeNode*x1 = myNode->linker[pos],*x2 = myNode->linker[pos -1];
x2->count++;
x2->item[x2->count]= myNode->item[pos];
x2->linker[x2->count]= myNode->linker[0];while(j <= x1->count){
x2->count++;
x2->item[x2->count]= x1->item[j];
x2->linker[x2->count]= x1->linker[j];
j++;
j = pos;while(j < myNode->count){
myNode->item[j]= myNode->item[j +1];
myNode->linker[j]= myNode->linker[j +1];
j++;}
myNode->count--;free(x1);}}// Adjust the node in BTreevoidadjustNode(structBTreeNode*myNode,int pos){if(!pos){if(myNode->linker[1]->count > MIN){leftShift(myNode,1);}else{mergeNodes(myNode,1);}}else{if(myNode->count != pos){if(myNode->linker[pos -1]->count > MIN){rightShift(myNode, pos);}else{if(myNode->linker[pos +1]->count > MIN){leftShift(myNode, pos +1);}else{mergeNodes(myNode, pos);}}}else{if(myNode->linker[pos -1]->count > MIN)rightShift(myNode, pos);elsemergeNodes(myNode, pos);}}}// Delete a value from the nodeintdelValFromNode(int item,structBTreeNode*myNode){int pos, flag =0;if(myNode){if(item < myNode->item[1]){
pos =0;
flag =0;}else{for(pos = myNode->count;(item < myNode->item[pos]&& pos >1); pos--);if(item == myNode->item[pos]){
flag =1;}else{
flag =0;}}if(flag){if(myNode->linker[pos -1]){copySuccessor(myNode, pos);
flag =delValFromNode(myNode->item[pos], myNode->linker[pos]);if(flag ==0){printf("Given data is not present in B-Tree\n");}}else{removeVal(myNode, pos);}}else{
flag =delValFromNode(item, myNode->linker[pos]);}if(myNode->linker[pos]){if(myNode->linker[pos]->count < MIN)adjustNode(myNode, pos);}}return flag;}// Delete operaiton in BTreevoiddelete(int item,structBTreeNode*myNode){structBTreeNode*tmp;if(!delValFromNode(item, myNode)){printf("Not present\n");return;}else{if(myNode->count ==0){
tmp = myNode;
myNode = myNode->linker[0];free(tmp);}}
root = myNode;return;}voiddisplay(structBTreeNode*myNode){int i;if(myNode){for(i =0; i < myNode->count; i++){display(myNode->linker[i]);printf("%d ", myNode->item[i +1]);}display(myNode->linker[i]);}}intmain(){int item, ch;insert(8);insert(9);insert(10);insert(11);insert(15);insert(16);insert(17);insert(18);insert(20);insert(23);printf("Insertion Done");printf("\nBTree elements before deletion: \n");display(root);int ele =20;printf("\nThe element to be deleted: %d", ele);delete(ele, root);printf("\nBTree elements before deletion: \n");display(root);}
Output
Insertion Done BTree elements before deletion: 8 9 10 11 15 16 17 18 20 23 The element to be deleted: 20 BTree elements before deletion: 8 9 10 11 15 16 17 18 23 8 9 23










































