美文网首页
26. Remove Duplicates from Sorte

26. Remove Duplicates from Sorte

作者: YellowLayne | 来源:发表于2017-06-14 21:00 被阅读0次

    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;
    }
    

    相关文章

      网友评论

          本文标题:26. Remove Duplicates from Sorte

          本文链接:https://www.haomeiwen.com/subject/repeqxtx.html