/** * Created by corning on 2017/12/19. */ public interface IArraySort { /** * 对æ°ç»è¿è¡æåºï¼å¹¶è¿åæåºåçæ°ç» * * @param sourceArray * @return * @throws Exception */ int[] sort(int[] sourceArray) throws Exception; }