LeetCode-26-Remove Duplicates from Sorted Array-E

xiaoxiao2021-02-28  18

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 by modifying the input array in-place with O(1) extra memory. Example: Given nums = [1,1,2],

Your function should return length = 2, with the first two elements of nums being 1 and 2 respectively. It doesn’t matter what you leave beyond the new length.

注意一下和27题的对比。

int removeDuplicates(vector<int>& nums) { int dup=0; for(int i=1;i<nums.size();i++){ if(nums[i]==nums[i-1]) dup++; else nums[i-dup]=nums[i]; } return nums.size()-dup; }
转载请注明原文地址: https://www.6miu.com/read-2050227.html

最新回复(0)