Skip to content

Instantly share code, notes, and snippets.

@rofr
Created November 19, 2012 12:59
Show Gist options
  • Save rofr/4110513 to your computer and use it in GitHub Desktop.
Save rofr/4110513 to your computer and use it in GitHub Desktop.
Distance Function interface
public interface DistanceFunction<T> {
double calculateDistance(T item, T item2);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment