Loading practice questions
Which of the following implementations of Catalan numbers has the largest space complexity(Don't consider the stack space)?
Correct Answer: A — Dynamic programming
Explanation:
The space complexities are as follows:
Dynamic programming: O(n)
Recursion: O(1)
Binomial coefficients: O(1).