Divide and conquer is an algorithm design paradigm that solves problem by dividing it to smaller sub-problems and solving them either by dividing them to smaller ones, or by any other algorithms. This is a very old way of solving problems. However, recent technology advancements did not make it off-fashion. There are two well-known and powerful algorithms based on this methodology: Binary Search and Merge Sort. What we are going to do is, have a look at the main idea behind it, discuss about algorithms based on it, and see how we can use it in our daily projects. Continue reading
Friday, August 12, 2011
by Mohammad J.
0 comments
