The list must be sorted into ascending order according to the natural ordering of its elements (as by the sort(List) method) prior to making this call. If it is not sorted, the results are undefined."意为使用二分法必须升序排列,否则结果不确定。作者: 戒风 时间: 2014-7-31 19:50
我是来学习知识的作者: 怀念黑海岸 时间: 2014-7-31 20:44
使用二分法查找的前提是你要进行查找操作的容器必须是有序的,sort方法就是对容器中元素进行排序,你注释掉了sort方法你如何保证容器中元素的有序性呢,于是就产生了你这样子的结果了。作者: 王凯路路 时间: 2014-8-1 15:03