Search Insert Position
Last updated
Was this helpful?
Last updated
Was this helpful?
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,那么left一定停target应该插入的位置上,right一定停在恰好比target小的index上。
O(logn),空间复杂度O(1)
用了九章模版:最后判断了三种情况,
target在start左边或者等于start, 返回start
taget在start和end 中间或者等于end,返回end
target在end外面,返回总长度