ObjectiveMcq
Print Protected
This page is protected for print. Use the website to view the content.
Which of the following implementations of Catalan numbers has the largest space complexity(Don't consider the stack space)?
Correct Answer: A — Dynamic programming
The space complexities are as follows:
Dynamic programming: O(n)
Recursion: O(1)
Binomial coefficients: O(1).