| | Divide and Conquer (Site not responding. Last check: 2007-10-04) |
 | | Finally, the divide and conquer approach is very similar to the dynamic approach in that it divides the problem into subproblems and then solves them recursively, however, it solves problmes when subproblems are not independent of one another. |
 | | Recall that basic idea of sequential Divide-and-Conquer algorithms is to solve the given problem directly, if it is small enough (i.e., if the problem is a base-case problem), otherwise divide it into several subproblems, find solutions to those subproblems and combine those solutions into the solutions to the given problem. |
 | | Divide: divide the given problem into smaller independent subproblems of the same type as the given problem and solve them concurrently. |
| home.wlu.edu /~whaleyt/classes/parallel/topics/dnc/dnc.html (395 words) |