欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

26. Remove Duplicates from Sorted Array

程序员文章站 2024-02-17 12:12:40
...

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