leetcode|80. Remove Duplicates from Sorted Array II

Given a sorted array nums, remove the duplicates in-place such that duplicates appeared at most twice and return the new length.

Do not allocate extra space for another array, you must do this by modifying the input array in-place with O(1) extra memory.

Example 1:

Given nums = [1,1,1,2,2,3],

Your function should return length = 5, with the first five elements of nums being 1, 1, 2, 2 and 3 respectively.

It doesn't matter what you leave beyond the returned length.

Example 2:

Given nums = [0,0,1,1,1,1,2,3,3],

Your function should return length = 7, with the first seven elements of nums being modified to 0, 0, 1, 1, 2, 3 and 3 respectively.

It doesn't matter what values are set beyond the returned length.

相对于上一个题目再增加一个标志位即可,另外,把题目理解清楚!
class Solution {
public:
    int removeDuplicates(vector<int>& nums) {
        if(nums.size()<=0)
            return 0;
        int now=nums[0];
        int duplicate=0;
        for(int i=1;i<nums.size();i++){
            if(nums[i]==now){
                if(duplicate==0){
                   duplicate=1; 
                }
                else{
                    nums.erase(nums.begin()+i);
                    i--;
                }
            }
            else{
                duplicate=0;
                now=nums[i];
            }
        }
        return nums.size();
    }
};

猜你喜欢

转载自blog.csdn.net/xueying_2017/article/details/80461870
今日推荐