26. Remove Duplicates from Sorted Array

来源:互联网 发布:易通网络上网卡 编辑:程序博客网 时间:2024/06/05 06:29

题目:Remove Duplicates from Sorted Array

Given a sorted array, remove the duplicates in place such that each element appear onlyonce 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 ofnums being 1 and 2 respectively. It doesn't matter what you leave beyond the new length.


保存当前位置为key,如果下一个数与key相同,则++,如果不相同,则把这个key放到数组中,同时把这数作为key.


代码:

int removeDuplicates(int* nums, int numsSize) {      int first=0;    int key=nums[0];        if(numsSize==0)return 0;    for(int i=0;i<numsSize;i++)    {        if(nums[i] != key)        {            nums[first++]=key;            key=nums[i];        }    }    nums[first++]=key;        return first;      }  








0 0
原创粉丝点击