美文网首页
Remove Duplicates from Sorted Ar

Remove Duplicates from Sorted Ar

作者: 无云清晨 | 来源:发表于2017-12-21 16:32 被阅读0次

有序数组中移除重复数字

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

相关文章

网友评论

      本文标题:Remove Duplicates from Sorted Ar

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