Introduction - If you have any usage issues, please Google them yourself
Divide and conquer algorithm is based on a multi-branch recursive algorithm design pattern. Divide and conquer algorithm recursively to a large problem into several sub-types of the same problem, until these sub-problems can be simple enough to directly address. Finally, the solution of these sub-problems together can get the original problem is solved.