Divide and conquer

This technique involves breaking a problems down into smaller sub-problems, solving each sub-problem recursively, and then combining the solutions to the sub-problems to obtain a silution to the original problem.

Binary search
Merge sort
Quick sort

Last updated

Was this helpful?