A binary tree has the following traversals:
A, B, C, D, E, F, G
B, D, C, A, F, G, E
This binary tree is converted to an equivalent forest using the standard left-child/right-sibling representation (left child = first child, right child = next sibling).
How many trees does the resulting forest contain?
Options:
1
2
3
4
Login required