您的位置:首页 > 其它

[Leetcode] Remove duplicates from sorted array 从已排序的数组中删除重复元素

2017-07-01 17:17 651 查看

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

题意:除去重复的元素,若有重复只保留一个,返回长度。

思路:遍历数组,用不同的,覆盖相同的。过程:保存第一个元素的下标lo。遇到相等不管,继续遍历,遇到不等的,则将该值赋给lo的下一个,反复这样。代码如下:

1 class Solution
2 {
3 public:
4     int removeDuplicates(int A[],int n)
5     {
6         if(n<=0)    return 0;
7         int lo=0;
8         for(int i=1;i<=n-1;++i)
9         {
10             if(A[lo] !=A[i])
11                 A[++lo]=A[i];
12         }
13         return lo+1;
14     }
15 };

思路相同,另一种写法:

1 class Solution {
2 public:
3     int removeDuplicates(int A[], int n)
4     {
5         if(n<2) return n;
6         int count=1;
7         int flag=0;
8         for(int i=0;i<n;++i)
9         {
10             if(A[flag] !=A[i])
11             {
12                 A[++flag]=A[i];
13                 count++;
14             }
15         }
16         return count;
17     }
18 };

 

内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: 
相关文章推荐