二分法题解,比较简单就不多解释了。注意边界就好。 public class Solution { /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * 找缺失数字 * @param a int整型一维数组 给定的数字串 * @return int整型 */ public int solve (int[] a) { // write code here int l = 0, r = a.length-1; if(a[r] == r)r...