题目:http://oj.leetcode.com/problems/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 → 1
[1,3,5,6], 7 → 4
[1,3,5,6], 0 → 0
给定一个有序数组和一个目标值,如果找到目标则返回索引。如果没有,则返回把它插入时所在位置的索引。
假设数组中没有重复元素。
上面是一些例子。
分析:
类似二分查找
C++实现:
class Solution {
public:
int searchInsert(int A[], int n, int target) {
// if(n == 0)
// {
// return 0;
// }
int left = 0;
int right = n - 1;
int mid = 0;
while(left <= right)
{
mid = (left + right) / 2;
if(A[mid] > target)
{
right = mid - 1;
}
else if(A[mid] < target)
{
left = mid + 1;
}
else
{
return mid;
}
}
return left;
}
};
Java实现:
public class Solution {
public int searchInsert(int[] A, int target) {
int left = 0;
int right = A.length - 1;
int mid = 0;
while (left <= right) {
mid = (left + right) / 2;
if (A[mid] > target) {
right = mid - 1;
} else if (A[mid] < target) {
left = mid + 1;
} else {
return mid;
}
}
return left;
}
}
Python实现:
class Solution:
# @param A, a list of integers
# @param target, an integer to be inserted
# @return integer
def searchInsert(self, A, target):
left = 0
right = len(A) - 1
while left <= right:
mid = (left + right) / 2
if A[mid] > target:
right = mid - 1
elif A[mid] < target:
left = mid + 1
else:
return mid
return left
感谢阅读,欢迎评论!
本文详细解析了LeetCode上的一道经典算法题——搜索插入位置。该题要求在一个已排序的数组中找到特定值的位置,或者确定其应当插入的位置。文章提供了C++, Java及Python三种语言的解决方案,并采用了二分查找法进行高效处理。
&spm=1001.2101.3001.5002&articleId=19768455&d=1&t=3&u=c8162bbaaf7e4fbd920ca5e71ba1774c)

被折叠的 条评论
为什么被折叠?



