Leetcode-搜索插入位置

10.搜索插入位置
题目内容:
Leetcode-搜索插入位置
文章图片


代码及思路:

class Solution { public: int searchInsert(vector& nums, int target) { if(nums.size()==0) return -1; int length = nums.size(); int begin=0; for (int i = 0; itarget) return begin; else if (nums[length - 1]target) { return (i+1); break; } else continue; } } return -1; } };

【Leetcode-搜索插入位置】

    推荐阅读