首页 > 代码库 > LeetCode--Remove Duplicates from Sorted Array

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]. 


解决方案:

public class Solution {
    public int removeDuplicates(int[] A) {
        int alen=A.length;
        if (alen==0) return 0;
        int key=A[0];
        int len=1;
        for(int i=0;i<alen;i++){
            if(key!=A[i]){
                key=A[i];
                len++;
            }
            A[len-1]=key;
        }
        return len;
    }
}


LeetCode--Remove Duplicates from Sorted Array