- 博客(1)
- 收藏
- 关注
原创 二分法查询(某个网站的面试题)
public class BiSearchTest { // 非递归 public static int BiSearchNonRecursive (int Array[], int low, int length, int key) { int high = length - 1; while(low<=high){ int half = (low+high)
2017-03-14 23:24:37
624
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人