曾梦垚

导航

2016年12月4日

二分查找法

摘要: 二分查找法 必须有前提:数组中的元素要有序。 public static int halfSeach_2(int[] arr,int key){ int min,max,mid; min = 0; max = arr.length-1; mid = (max+min)>>1; //(max+min) 阅读全文

posted @ 2016-12-04 22:36 曾梦垚 阅读(450) 评论(0) 推荐(0) 编辑