标签: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