Leetcode13: Remove Duplicates from Sorted Array

243 篇文章 0 订阅

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

这题和remove element有点类似,只是这里需要把数组中所有重复的数都只留下一个。我先借鉴了那道题的思路,代码如下:

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

但是这里会报超时,因为时间复杂度是n方。其实仔细想想,时间复杂度可以降一维,每次并不需要把删除元素后面的数都往前挪,我们只需要比较相邻两个数(因为是有序的),当不同时把后面的数往前挪即可,用一个计数器来记录索引值。

class Solution {
public:
    int removeDuplicates(int A[], int n) {
        if(n == 0)
            return 0;
        int k = 1;
        for(int i = 1; i < n; i++)
        {
            if(A[i] == A[i-1])
                continue;
            else
            {
                A[k] = A[i];
                k++;
            }
        }
        return k;
    }
};
改进后的代码如上,时间复杂度减少了一维,遍历一次数组即可。



  • 1
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值