二分基础上 找到基础 往前迭代

import java.util.*;
public class Solution {
    /**
     * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可
     *
     * 如果目标值存在返回下标,否则返回 -1
     * @param nums int整型一维数组 
     * @param target int整型 
     * @return int整型
     */
    public int search (int[] nums, int target) {
        // write code here
        if(nums == null || nums.length ==0){
            return -1;
        }
        int start = 0;
        int end = nums.length-1;
        int match = -1;
        while(start<=end){
            int mid = (end - start)/2 + start;
            if(nums[mid]>target){
                end = mid-1;
            } else if(nums[mid]<target){
                start = mid + 1; 
            }else{
               match= mid;
               break;
            }
        }
        while(match>0 && nums[match-1]==target){
            match--;
        }
        return match;
    }
}