2-3 树和 2-3-4 树统称为 B-树(Balanced Tree)。
为什么不直接使用 B-树?
既然以 2-3 树和 2-3-4 树都可以用来转换成红黑树,为什么最终使用 2-3-4 树的转换呢?
https://stackoverflow.com/questions/8765558/why-dont-we-use-2-3-or-2-3-4-5-trees
Implementation of 2-3-4 trees typically requires either multiple classes (2NODE, 3NODE, 4NODE) or you have just NODE that has an array of items. In the case of multiple classes you waste lots of time constructing and destructing node instances and reparenting them is cumbersome. If you use a single class with arrays to hold items and children then you are either resizing arrays constantly which is similarly wasteful or you wind up wasting over half your memory on unused array elements. It’s just not very efficient compared to Red-Black trees.