[LeetCode]Remove Duplicates from Sorted Array

Given a sorted array, remove the duplicates in place such that each element appear only once and return the new length.

Do not allocate extra space for another array, you must do this in place with constant memory.

For example, Given input array A = [1,1,2],

Your function should return length = 2, and A is now [1,2].

思考:前后指针。

class Solution {
public:
    int removeDuplicates(int A[], int n) {
        if(n==0||n==1) return n;
        int i,j=0;
        for(i=1;i<n;i++)
        {
            if(A[i]!=A[j])
            {
                j++;
                A[j]=A[i];
            }
        }
        return j+1;
    }
};

  

posted @ 2013-11-13 10:21  七年之后  阅读(165)  评论(0编辑  收藏  举报