鱼C论坛

 找回密码
 立即注册
查看: 1654|回复: 0

[学习笔记] leetcode 35. Search Insert Position

[复制链接]
发表于 2019-8-30 09:27:31 | 显示全部楼层 |阅读模式

马上注册,结交更多好友,享用更多功能^_^

您需要 登录 才可以下载或查看,没有账号?立即注册

x
Given a sorted array and a target value, return the index if the target is found. If not, return the index where it would be if it were inserted in order.

You may assume no duplicates in the array.

Example 1:

Input: [1,3,5,6], 5
Output: 2
Example 2:

Input: [1,3,5,6], 2
Output: 1
Example 3:

Input: [1,3,5,6], 7
Output: 4
Example 4:

Input: [1,3,5,6], 0
Output: 0

class Solution {
    public int searchInsert(int[] nums, int target) {
        
        int start = 0;
        
        int end = nums.length -1;
        
        while( start <=  end){
            
            int mid = (start + end) / 2;
            
            if(nums[mid] == target){
                
                return mid;
            }
            
            else if(nums[mid] > target){
                
                end = mid -1 ;
            }
            
            else if(nums[mid] < target){
                
                start = mid + 1;
            }
        }
        
        return Math.abs(-end - 1);
        
    }
}

本帖被以下淘专辑推荐:

想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

小黑屋|手机版|Archiver|鱼C工作室 ( 粤ICP备18085999号-1 | 粤公网安备 44051102000585号)

GMT+8, 2024-6-28 17:23

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

快速回复 返回顶部 返回列表