B+ Tree What is B+ Tree ? B+ Tree : A B+ tree is an N-ary tree with a variable but often earge number of children per node . A B+ tree Consist Three Thing 1) Root 2) Internal node 3) External node or leaf node A B+ tree can be viewed as a B-tree in which each node contain only keys and to an additional level is added at the bottom with linked leaves . Time Complexity of B+ Tree : Insertion , Deletion and searching all cases are take time in worst case is O( log n ) . Space Complexity of B+ Tree : Space Complexity in worst Case is O(n) . Properties of B+ Tree : b = Order of the B+ Tree