A
divide and conquer problem solving method is a top-down method that breaks a problem into smaller parts, solves each smaller part, and combines the solution (in a bottom-up manner) to solve the original problem.
Identify
Define
Design top-down, backward-chaining.
Implement bottom-up forward-chaining.
Evaluate