Search Insert Position leetcode java

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.


Here are few examples.
       
[1,3,5,6], 5 → 2
       
[1,3,5,6], 2 → 1
       
[1,3,5,6], 7 → 4
       
[1,3,5,6], 0 → 0

本题是基本考察二分查找的题目,与基本二分查找方法不同的地方是,二分查找法当查找的target不在list中存在时返回-1,而本题则需要返回该target应在此list中插入的位置。

当循环结束时,如果没有找到target,那么low一定停target应该插入的位置上,high一定停在恰好比target小的index上。

[1,3,5,6], 7

low = 0, high = 3

step1: mid = 1

A[mid] = 3, 3<7

low = mid + 1 = 2

low = 2, high = 3

step2: mid = 2

A[mid] = 5, 5<7

low = mid + 1 = 3

low = 3, high = 3

step3: mid = 3

A[mid] = 6, 6<7

low = mid + 1 = 4

low = 4, high = 3

return low = 4;

 [1,3,5,6], 0

low = 0, high = 3

step1: mid = 1

A[mid] = 3, 3>0

high = mid - 1 = 0

low = 0, high = 0

step2: mid = 0

A[mid] = 1, 1>0

high = mid - 1 = -1

low = 0, high = -1

return 0

1     public int searchInsert(int[] A, int target) {
 2         if(A == null||A.length == 0)
 3             return 0;
 4         int low = 0, high = A.length-1;
 5         
 6         while(low <= high){
 7             int mid = (low + high) / 2;
 8             
 9             if(A[mid] > target)
10                 high = mid - 1;
11             else if(A[mid] < target)
12                 low = mid + 1;
13             else
14                 return mid;
15         }
16         
17         return low;
18     }

自己在做第二遍时候犯二,mid = (low+high)/2的括号忘记加了

Reference: http://blog.csdn.net/linhuanmars/article/details/31354941

Search Insert Position leetcode java

时间: 2024-10-01 16:00:37

Search Insert Position leetcode java的相关文章

Search Insert Position (LeetCode)

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. Here are few examples.[1,3,5,6], 5 → 2[1,3,5,6], 2 →

leetcode Search Insert Position(easy) /java

写easy,心情也很顺畅. 题目的意思是,如果有val,那么返回val的下标.如果没有val,那么找出val应该放在哪里. import java.io.*; import java.util.*; public class Solution { public static int searchInsert(int[] nums, int target) { int r=0; int len=nums.length; if(len==0) return 0; int i,j; i=0; whil

Search Insert Position——LeetCode

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. Here are few examples.[1,3,5,6], 5 → 2[1,3,5,6], 2 →

[LeetCode] 035. Search Insert Position (Medium) (C++)

索引:[LeetCode] Leetcode 题解索引 (C++/Java/Python/Sql) Github: https://github.com/illuz/leetcode 035. Search Insert Position (Medium) 链接: 题目:https://leetcode.com/problems/search-insert-position/ 代码(github):https://github.com/illuz/leetcode 题意: 要把一个数有序插入到一

LeetCode——Search Insert Position

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. Here are few examples. [1,3,5,6], 5 → 2 [1,3,5,6], 2

[LeetCode] Search Insert Position [21]

题目 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. Here are few examples. [1,3,5,6], 5 → 2 [1,3,5,6]

LeetCode: Search Insert Position 解题报告

Search Insert Position 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. Here are few examples.[1,3,5,

【LeetCode】Search Insert Position (2 solutions)

Search Insert Position 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. Here are few examples.[1,3,5,

LeetCode: Search Insert Position [034]

[题目] 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. Here are few examples. [1,3,5,6], 5 → 2 [1,3,5,