I have two sets, A and B. The sets are made of N dimension points and ordered (N<10). I need find the nearest part of B to A. Let's say the nearest part is B1. The count of points in B1 should be same as A, and the sum of distances of all points in B1 to A should be minimum.
I have checked k-d tree. It only helps to find nearest point in a set. So is there an algorithm to find the nearest range in a fast way?
Thanks.