1. Computer Science Engineering (CSE)
  2. Design and Analysis of Algorithms
  3. Recursive solution of Set partition prob...
Q.

Recursive solution of Set partition problem is faster than dynamic problem solution in terms of time complexity.

A. true
B. false
Answer» B. false
Explanation: the recursive solution to set partition problem takes exponential time complexity whereas the dynamic programming solution takes polynomial time complexity. so dynamic programming solution is faster in terms of time complexity.

Discussion