package sort; /** A class for mapping elements to buckets. */ public interface Bucketizer { /** Computes the bucket into which the given element should be placed. */ public int getPos(int x); }