题解 | #二分查找-I#

二分查找-I

https://www.nowcoder.com/practice/d3df40bd23594118b57554129cadf47b

import java.util.*;


public class Solution {
    /**
     * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可
     *
     * 
     * @param nums int整型一维数组 
     * @param target int整型 
     * @return int整型
     */
    public int search (int[] nums, int target) {
        //双指针,左指针left指向数组第一个元素,右指针right指向数组最后一个元素
        int left = 0, right = nums.length - 1;
        while(left <= right){
		  //取中位数
            int temp = (left + right) / 2;
		  //判断与target值相等直接返回
            if(nums[temp] == target) return temp;
		  //小于target值,左指针left = temp + 1,反之右指针right = temp - 1
            else if(nums[temp] < target) left = temp + 1;
            else right = temp - 1;
        }
        return -1;
    }
}

全部评论

相关推荐

不愿透露姓名的神秘牛友
07-04 18:06
点赞 评论 收藏
分享
醉蟀:你不干有的是人干
点赞 评论 收藏
分享
评论
点赞
收藏
分享

创作者周榜

更多
牛客网
牛客网在线编程
牛客网题解
牛客企业服务