码迷,mamicode.com
首页 > 编程语言 > 详细

删除排序数组中的重复数字

时间:2017-03-06 22:04:22      阅读:169      评论:0      收藏:0      [点我收藏+]

标签:write   strong   style   log   长度   元素   integer   moved   return   

给定一个排序数组,在原数组中删除重复出现的数字,使得每个元素只出现一次,并且返回新的数组的长度。

不要使用额外的数组空间,必须在原地没有额外空间的条件下完成。

给出数组A =[1,1,2],你的函数应该返回长度2,此时A=[1,2]

 
class Solution {
public:
    /**
     * @param A: a list of integers
     * @return : return an integer
     */
    int removeDuplicates(vector<int> &nums) {
        // write your code here
       int i = 0;
        if(!nums.size())
            return 0;
        for (int j = 1; j < nums.size(); ++j) {
            if (nums[j] != nums[i]) {
                nums[++i] = nums[j];
            }
        }   
        return i+1;
    }
};

 

删除排序数组中的重复数字

标签:write   strong   style   log   长度   元素   integer   moved   return   

原文地址:http://www.cnblogs.com/shuxin64/p/6512157.html

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