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); 
	} 
}

原创文章,作者:奋斗,如若转载,请注明出处:https://blog.ytso.com/tech/aiops/7208.html

(0)
上一篇 2021年7月17日 08:44
下一篇 2021年7月17日 08:44

相关推荐

发表回复

登录后才能评论