LeetCode 26 Remove Duplicates from Sorted Array (移除有序数组中重复数字)
Posted 伊甸一点
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了LeetCode 26 Remove Duplicates from Sorted Array (移除有序数组中重复数字)相关的知识,希望对你有一定的参考价值。
从有序数组中移除重复数字,并且返回不重复数字的个数
遍历操作: 可以使用新的for循环 for (int n : nums){}
每次进行对比,并且更新第一个遇到不相等的元素的下标为i
对数组进行重新赋值操作
当数组长度大于1时,ans初值为1,当数组长度为0时,返回0
参考代码 :
package leetcode_50; /*** * * @author pengfei_zheng * 移除有序数组中的重复元素 */ public class Solution26 { public int removeDuplicates(int[] nums) { if(nums.length==0) return 0; int i = 1; for (int n : nums) if (n > nums[i-1])//满足则说明不重复 nums[i++] = n;//更新i return i; } }
以上是关于LeetCode 26 Remove Duplicates from Sorted Array (移除有序数组中重复数字)的主要内容,如果未能解决你的问题,请参考以下文章
[LeetCode]26. Remove Duplicates from Sorted Array
Leetcode 26. Remove Duplicates from Sorted Array
[leetcode-26-Remove Duplicates from Sorted Array]
Leetcode----26. Remove Duplicates from Sorted Array