码迷,mamicode.com
首页 > 其他好文 > 详细

leetcode[80]Remove Duplicates from Sorted Array II

时间:2015-02-09 15:24:59      阅读:125      评论:0      收藏:0      [点我收藏+]

标签:

Follow up for "Remove Duplicates":
What if duplicates are allowed at most twice?

For example,
Given sorted array A = [1,1,1,2,2,3],

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

class Solution {
public:
    int removeDuplicates(int A[], int n) {
        if(n<=2)return n;
        int len=1;
        int curr=A[0];
        map<int,int> Amap;
        Amap[curr]=1;
        for(int i=1;i<n;i++)
        {
            if(A[i]==curr)
            {
                Amap[curr]++;
                if(Amap[curr]<=2)
                {
                    A[len]=curr;
                    len++;
                }
            }
            else
            {
                curr=A[i];
                Amap[curr]=1;
                A[len]=curr;
                len++;
            }
        }
        return len;
    }
};

 

leetcode[80]Remove Duplicates from Sorted Array II

标签:

原文地址:http://www.cnblogs.com/Vae98Scilence/p/4281449.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!