超过87%java public int search (int[] nums, int target) { // write code here return erfen(nums, 0, nums.length - 1, target); } public static int erfen(int[]arr,int low,int high, int target){ int erfen=-1; if (low<=high){ int mid = (low+high)...