摘要: package com.test; import java.util.Arrays; public class BinaraySearch { public static int search(int key, int[] a) { int lo = 0; int hi = a.length - 1; while (lo a... 阅读全文
posted @ 2018-06-04 17:30 L狗哥 阅读(356) 评论(0) 推荐(0) 编辑