Suppose there is a 2-3 tree with n nodes.
Each node in the left sub-tree of the root has 3 children. (except the leaves).
Each node in the right sub-tree of the root has 2 children. (except the leaves).
How am I supposed to find how many nodes exist in the right/left sub-tree of the root?
Denote n':= nodes number in the right root sub-tree.
Then,Nodes number in the left root sub-tree is (n-1)-n'.
How am I supposed to find n' (to write n' as an expression of n)?
I am a little bit confused.
Thanks !