X Tutup
/** * Created by corning on 2017/12/19. */ public interface IArraySort { /** * 对数组进行排序,并返回排序后的数组 * * @param sourceArray * @return * @throws Exception */ int[] sort(int[] sourceArray) throws Exception; }
X Tutup