Divide-and-conquer paradigm consists of following major phases,except?
Breaking the problem into several sub-problems that are similar to the original problem but smaller in size
Solve the sub-problem recursively
Combine these solutions to subproblems to create a solution to the original problem.
None of the options is correct
1
Expert's answer
2016-04-06T12:29:05-0400
Answer: None of the options is correct. Formally, divide-and-conquer paradigm consists of following major phases: • Breaking the problem into several sub-problems that are similar to the original problem but smaller in size, • Solve the sub-problem recursively (successively and independently), and then • Combine these solutions to subproblems to create a solution to the original problem.
Comments
Leave a comment