首页 > 代码库 > [LeetCode] 035. Search Insert Position (Medium) (C++)
[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
题意:
要把一个数有序插入到一个有序数组里,问插入的位置。
分析:
还是二分变形题。
- 用 STL 的
lower_bound
偷懒。 - 二分,最后注意推断一下是否找到。要输出什么。
代码:
C++:
class Solution { public: int searchInsert(int A[], int n, int target) { // if use lower_bound // return lower_bound(A, A + n, target) - A; int l = 0, r = n - 1, mid = 0; while (l < r) { mid = l + (r - l) / 2; // mid = (l + r) / 2; if (A[mid] < target) l = mid + 1; else r = mid; } return A[l] < target ? l + 1 : l; } };
[LeetCode] 035. Search Insert Position (Medium) (C++)
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。