26. Remove Duplicates from Sorte

2017-06-14  本文已影响0人  YellowLayne

1.描述

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 in place with constant memory.

For example,
Given input array 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.

2.分析

3.代码

int removeDuplicates(int* nums, int numsSize) {
    if (0 == numsSize || NULL == nums) return 0;
    int index = 0;
    for (unsigned int i = 1; i < numsSize; ++i) {
        if (nums[i] != nums[index]) {
            nums[++index] = nums[i]; 
        }
    }
    return index + 1;
}
上一篇 下一篇

猜你喜欢

热点阅读