Search Insert Position

来源:互联网 发布:梦里花落知多少百度云 编辑:程序博客网 时间:2024/04/29 20:18

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


class Solution {
public:
    int searchInsert(int A[], int n, int target) {
        // Note: The Solution object is instantiated only once and is reused by each test case.
        if (n==0)
            return 0;
        if (target<A[0])
            return 0;
        
        for (int i=0;i<n-1;i++){
            if (target==A[i])
                return i;
            else if (target>A[i] && target<A[i+1])
                return i+1;
        }
        
        if (target==A[n-1])
            return n-1;
        else
            return n;
    }
};

0 0
原创粉丝点击