Remove Duplicates from Sorted Array
Posted 大数据最好
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Remove Duplicates from Sorted Array相关的知识,希望对你有一定的参考价值。
问题描述:
Given a sorted array, remove the duplicates in place such that each element appear only once and return the new length.
Do not allocate extra space for another array, you must do this in place with constant memory.
For example,
Given input array nums = [1,1,2]
,
Your function should return length = 2
, with the first two elements of nums being 1
and 2
respectively. It doesn't matter what you leave beyond the new length.
public class Solution
public static int removeDuplicates(int[] nums)
int index=0;
for(int i=1;i<nums.length;i++)
if(nums[i] != nums[i-1])
nums[++index]=nums[i];
return index+1;
public static void main(String[] args) throws IOException
int[] a=1,1,2,3,3,4,4;
int b=removeDuplicates(a);
System.out.println(b);
以上是关于Remove Duplicates from Sorted Array的主要内容,如果未能解决你的问题,请参考以下文章
leetcode 26. Remove Duplicates from Sorted Array 80. Remove Duplicates from Sorted Array II
26. Remove Duplicates from Sorted Array
26. Remove Duplicates from Sorted Array
26. Remove Duplicates from Sorted Array