前往小程序,Get更优阅读体验!
立即前往
首页
学习
活动
专区
工具
TVP
发布
社区首页 >专栏 >Remove Duplicates from Sorted Array

Remove Duplicates from Sorted Array

原创
作者头像
Michel_Rolle
发布2024-07-09 23:53:16
1K0
发布2024-07-09 23:53:16

link

Given an integer array nums sorted in non-decreasing order, remove the duplicates in-place such that each unique element appears only once. The relative order of the elements should be kept the same.

Since it is impossible to change the length of the array in some languages, you must instead have the result be placed in the first part of the array nums. More formally, if there are k elements after removing the duplicates, then the first k elements of nums should hold the final result. It does not matter what you leave beyond the first k elements.

Return k after placing the final result in the first k slots of nums.

Do not allocate extra space for another array. You must do this by modifying the input array in-place with O(1) extra memory.

Custom Judge:

The judge will test your solution with the following code:

代码语言:javascript
复制
Input: nums = [1,1,2]
Output: 2, nums = [1,2,_]
Explanation: Your function should return k = 2, with the first two elements of nums being 1 and 2 respectively.
It does not matter what you leave beyond the returned k (hence they are underscores).

思路

遍历数组,只有后面的数比前面的数大,就说明前面的元素出现了一次。然后做一个累加值

因为是排序好了的数组,所以 num[n+1] >= num[n]

代码语言:javascript
复制
func removeDuplicates(nums []int) int {
	if len(nums) == 0 {
		return 0
	}

	i, j := 1, 0
	for ; i < len(nums); i++ {
		if nums[i] > nums[j] {
			j++
			nums[j] = nums[i]
		}
	}
	j++

	return j
}

快慢指针做法

代码语言:javascript
复制
func removeDuplicates(nums []int) int {
	slow := 0 
    for fast :=0; fast < len(nums);fast++ {
		if nums[fast] != nums[slow] {
			nums[slow+1] = nums[fast]
			slow++
		}
	}
    return slow + 1
}
代码语言:javascript
复制
func removeDuplicates2(nums []int) int {
	for i := 0; i+1 < len(nums); {
		if nums[i] == nums[i+1] {
			nums = append(nums[:i], nums[i+1:]...)
		} else {
			i++
		}
	}

	return len(nums)
}

原创声明:本文系作者授权腾讯云开发者社区发表,未经许可,不得转载。

如有侵权,请联系 cloudcommunity@tencent.com 删除。

原创声明:本文系作者授权腾讯云开发者社区发表,未经许可,不得转载。

如有侵权,请联系 cloudcommunity@tencent.com 删除。

评论
登录后参与评论
0 条评论
热度
最新
推荐阅读
领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档