Leetcode-搜索插入位置

10.搜索插入位置

题目内容:

Leetcode-搜索插入位置_第1张图片

 

代码及思路:

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编程题)