题目:https://leetcode.com/problems/search-insert-position/
代码(github):https://github.com/illuz/leetcode
要把一个数有序插入到一个有序数组里,问插入的位置。
还是二分变形题。
- 用 STL 的
lower_bound
偷懒。 - 二分,最后注意判断一下是否找到,要输出什么。
Name | Name | Last commit date | ||
---|---|---|---|---|
parent directory.. | ||||
题目:https://leetcode.com/problems/search-insert-position/
代码(github):https://github.com/illuz/leetcode
要把一个数有序插入到一个有序数组里,问插入的位置。
还是二分变形题。
lower_bound
偷懒。