InterviewSolution
Saved Bookmarks
| 1. |
Explain the Divide and Conquer Algorithmic Paradigm. Also list a few algorithms which use this paradigm. |
|
Answer» Divide and CONQUER is an algorithm paradigm, not an algorithm itself. It is set up in such a way that it can handle a large amount of data, split it down into SMALLER chunks, and determine the SOLUTION to the problem for each of the smaller chunks. It combines all of the piecewise solutions of the smaller chunks to form a single global solution. This is known as the divide and conquer technique. The Divide and Conquer algorithmic paradigm employ the steps given below:
Some of the ALGORITHMS which use the Divide and Conquer Algorithmic paradigm are as follows:
|
|