There are no reviews yet. Be the first to send feedback to the community and the maintainers!
Repository Details
A 2-3 tree is a type of a tree data structure whose one node can have maximum 2 keys and minimum 1 key. The operation of insertion only occurs at leaf nodes. The node having one key are called 2 node and node having two keys are called 3 nodes. B tree of maximum degree 3 also makes a 2 3 tree. The path from any 2 or 3 node in its sub tree to leaf node must be same.