The process you described is known as "divide and conquer." This technique involves dividing a problem into smaller subproblems, solving each subproblem recursively, and then combining the results to obtain a final solution. Among the options listed, none exactly match "divide and conquer," but the binary search algorithm is a classic example of this approach.
If I had to choose one that aligns most closely with your description, it would be:
binary search algorithm