Question 6
Apply the divide and conquer strategy to find the closest pair of points in a set. After dividing the set into two halves and recursively finding the closest pairs in each half, what additional step is required?
Combine the results directly
Perform a linear search for the closest pair
Consider pairs that span both halves
Sort the points by their distances