How to convert a btree to a b+tree

722 views Asked by At

I have a fully working B-Tree, and I want to convert this into a B+tree. Is there any way that I can achieve that without changing so much of my code? is it possible?

1

There are 1 answers

2
mushfek0001 On BEST ANSWER

Is there any way that I can achieve that without changing so much of my code?

Nope. Significant amount of change is required. B+ tree doesn't store data pointer in non-leaf nodes.