当前位置: 代码迷 >> Eclipse >> 数据结构有关问题
  详细解决方案

数据结构有关问题

热度:63   发布时间:2016-04-23 13:53:59.0
数据结构问题
给定未排序的数组A,大小为n,请先把数组排好序,然后用二分查找定数X





------解决方案--------------------
Java code
        int[] test = new int[] { 1, 6, 7, 9, 3, 5, 2 };        Arrays.sort(test);        System.out.println(Arrays.toString(test));        int index = Arrays.binarySearch(test, 5);        System.out.println(index);
------解决方案--------------------
楼上正解,此贴可结
  相关解决方案