Question: What is the space complexity of a recursive in-order traversal of a binary tree?
Options:
Correct Answer: O(log n)
Solution:
The space complexity is O(h) where h is the height of the tree, which is O(log n) for balanced trees.