zoukankan      html  css  js  c++  java
  • Remove Duplicates from Sorted Array

    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].

    主要思路是,有几个不相同的元素,它的下标就是不相同的元素个数减一,因此,当元素相同的时候,下标不变化,但是元素向后移动。

    C++代码实现:

    #include<iostream>
    using namespace std;
    
    class Solution {
    public:
        int removeDuplicates(int A[], int n) {
            int i;
            int count=1;
            //注意数组为空的情况
            if(n==0)
                return 0;
            for(i=1;i<n;i++)
            {
                if(A[i-1]!=A[i])
                {
                    //count记录有几个不相等的元素,第一个不相等的元素下标为1,第二个不相等的元素的下标为2,依次类推
                    count++;
                    A[count-1]=A[i];
                }
            }
            return count;
        }
    };
    
    int main()
    {
        int arr[10]={1,2,3,3,3,4,4,5,5,6};
        Solution s;
        cout<<s.removeDuplicates(arr,10)<<endl;
        for(auto a:arr)
            cout<<a<<" ";
        cout<<endl;
    }

    运行结果:

  • 相关阅读:
    CSS和Js样式属性的对照关系
    CSS选择器
    主成分分析(PCA)核心思想
    线性变换的本质
    java 滤镜实现
    Spring Boot工程发布到Docker
    解决maven的报错
    spring boot初探
    WPF的Page介绍及Page Window Frame 之间的链接使用示例,嵌套问题
    浅谈WPF页间导航
  • 原文地址:https://www.cnblogs.com/wuchanming/p/4098061.html
Copyright © 2011-2022 走看看