Code Ganker: Remove Duplicates from Sorted Array -- LeetCode

2014年2月26日星期三

Remove Duplicates from Sorted Array -- LeetCode

原题链接: http://oj.leetcode.com/problems/remove-duplicates-from-sorted-array/
这道题跟Remove Element类似,也是考察数组的基本操作,属于面试中比较简单的题目。做法是维护两个指针,一个保留当前有效元素的长度,一个从前往后扫,然后跳过那些重复的元素。因为数组是有序的,所以重复元素一定相邻,不需要额外记录。时间复杂度是O(n),空间复杂度O(1)。代码如下:
public int removeDuplicates(int[] A) {
    if(A == null || A.length==0)
        return 0;
    int index = 1;
    for(int i=1;i<A.length;i++)
    {
        if(A[i]!=A[i-1])
        {
            A[index]=A[i];
            index++;
        }
    }
    return index;
}
类似的题目有Remove Duplicates from Sorted List,那道题是在数组中操作,还有Remove Duplicates from Sorted Array II,这个题目操作有所不同,不过难度也差不多,有兴趣的朋友可以看看。

没有评论:

发表评论