摘要: /** * 二分查找法 */ public static void dichotomySort(int[] a,int b){ Arrays.sort(a); System.out.println(Arrays.toString(a)); int c = 0; int d = a.length-1; while(d>=c){ int f = (c+d)/2; ... 阅读全文
posted @ 2018-07-25 20:18 我的改变,拜您所赐。 阅读(91) 评论(0) 推荐(0)