Example & Tutorial understanding programming in easy ways.

What is B and B+ tree, tell comparison between them

- In B tree, data can be stored at leaf node as well as internal node but in B+ tree, data only store at leaf node.

-In B tree, no sequential search perform, while in B+ tree we can also perform the sequential search.

- Leaf node can not be linked together in B tree, but linked in B+ tree.

Read More →