leetcode-cn 删除排序数组中的重复项

题目如图:
leetcode-cn 删除排序数组中的重复项_第1张图片
比较简单,代码如下:

	private static int removeDuplicates(int[] nums) {
		int length = nums.length;
		int headIndex = 0, tailIndex = 1;
		for (; tailIndex < length; tailIndex++) {
			// 比较 headIndex tailIndex 元素
			// 不相等则交换 headIndex 向后移动一位
			if (nums[headIndex] != nums[tailIndex]) {
				nums[++headIndex] = nums[tailIndex];
			}
		}
		// 因为是索引 所以数组长度加 1
		return headIndex + 1;
	}

leetcode-cn 删除排序数组中的重复项_第2张图片

你可能感兴趣的:(数据结构与算法)