摘要: class Demo { private static int a[]={1,2,3,4,5,6}; private static void binary_search(int key) { int low=0,high=5,mid=0; while(low<=high) { mid=(low+hi 阅读全文
posted @ 2016-03-11 16:56 小德cyj 阅读(257) 评论(0) 推荐(0) 编辑