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 A = [1,1,2], 
 
Your function should return length = 2, and A is now [1,2]. 
 
Example

题解

使用两根指针(下标),一个指针(下标)遍历数组,另一个指针(下标)只取不重复的数置于原数组中。

C++:

class Solution { 
public: 
    /** 
     * @param A: a list of integers 
     * @return : return an integer 
     */ 
    int removeDuplicates(vector<int> &nums) { 
        if (nums.size() <= 1) return nums.size(); 
 
        int len = nums.size(); 
        int newIndex = 0; 
        for (int i = 1; i< len; ++i) { 
            if (nums[i] != nums[newIndex]) { 
                newIndex++; 
                nums[newIndex] = nums[i]; 
            } 
        } 
 
        return newIndex + 1; 
    } 
};

JAVA:

public class Solution { 
    /** 
     * @param A: a array of integers 
     * @return : return an integer 
     */ 
    public int removeDuplicates(int[] nums) { 
        if (nums == null) return -1; 
        if (nums.length <= 1) return nums.length; 
 
        int newIndex = 0; 
        for (int i = 1; i < nums.length; i++) { 
            if (nums[i] != nums[newIndex]) { 
                newIndex++; 
                nums[newIndex] = nums[i]; 
            } 
        } 
 
        return newIndex + 1; 
    } 
}

源码分析

注意最后需要返回的是索引值加1。

复杂度分析

遍历一次数组,时间复杂度 O(n), 空间复杂度 O(1).

 

原创文章,作者:ItWorker,如若转载,请注明出处:https://blog.ytso.com/20665.html

(0)
上一篇 2021年7月19日
下一篇 2021年7月19日

相关推荐

发表回复

登录后才能评论