码迷,mamicode.com
首页 > 其他好文 > 详细

34. Search for a Range

时间:2017-09-23 14:32:06      阅读:115      评论:0      收藏:0      [点我收藏+]

标签:for   color   ==   new   logs   solution   pre   nbsp   public   

public class Solution {
    public int[] searchRange(int[] nums, int target) {
        return new int[]{binarySearch(nums,target,true),binarySearch(nums,target,false)};
    }
    private int binarySearch(int[] nums, int target, boolean mode) {
        int l=0;
        int r=nums.length-1;
        while(l<r)
        {
            int m=l+(r-l)/2;
            if(nums[m]==target)
            {
                if(mode==true)
                    r=m;
                else 
                {
                    if(nums[m+1]==target)
                        l=m+1;
                    else
                        return m;
                }
            }
            else if(nums[m]<target)
                l=m+1;
            else
                r=m;
        }
        return l<nums.length&&nums[l]==target?l:-1;
    }
}

 

34. Search for a Range

标签:for   color   ==   new   logs   solution   pre   nbsp   public   

原文地址:http://www.cnblogs.com/asuran/p/7580915.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!