leetcode-cn 删除排序数组中的重复项
题目如图:
比较简单,代码如下:
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;
}