Tag Archives: C Data Structure

Algorithm in C – Insertion on a B+ Tree

Insertion on a B+ Tree   In this tutorial, you will learn about insertion operation on a B+ tree. Also, you will find working examples of inserting elements on a B+ tree in C. Inserting an element into a B+ tree consists of three main events: searching the appropriate leaf, inserting the element and balancing/splitting the tree. Let us understand these events …