Question: What is the space complexity of the recursive implementation of inorder traversal?
Options:
Correct Answer: O(n)
Solution:
The space complexity of the recursive implementation of inorder traversal is O(n) due to the call stack used for recursion.