摘要:
1 package search; 2 3 /** 4 * 二分查找又称折半查找,它是一种效率较高的查找方法。 5 【二分查找要求】:1.必须采用顺序存储结构 2.必须按关键字大小有序排列。 6 * @author Administrator 7 * 8 */ 9 public class BinarySearch { 10 public static void main(String[] args) {11 int[] src = new int[] {1, 3, 5, 7, 8, 9}; 12 System.out.println(... 阅读全文