码迷,mamicode.com
首页 > 其他好文 > 详细

[LeetCode] Remove Duplicates from Sorted Array II

时间:2014-12-11 13:48:53      阅读:141      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   io   ar   color   os   sp   for   

Follow up for "Remove Duplicates":
What if duplicates are allowed at most twice?

For example,
Given sorted array A = [1,1,1,2,2,3],

Your function should return length = 5, and A is now [1,1,2,2,3].

 

Hide Tags
 Array Two Pointers
 
    这个很容易判断了,设两个index,一个是遍历的,一个是指向返回的最后位置,因为已经排序了,所以判断索引的值与最后位置及前一个的值是否相等,相等继续遍历,不相等更新索引。
bubuko.com,布布扣
 1 #include <iostream>
 2 using namespace std;
 3 
 4 class Solution {
 5 public:
 6     int removeDuplicates(int A[], int n) {
 7         if(n<3) return n;
 8 //        cout<<n<<endl;
 9         int retidx= 1,curidx =2;
10         for(;curidx<n;curidx++){
11 //            cout<<retidx<<" "<<curidx<<endl;
12             if(A[retidx]==A[curidx]&&A[retidx-1]==A[curidx])
13                 continue;
14             A[++retidx] = A[curidx];
15         }
16         return retidx+1;
17     }
18 };
19 
20 int main()
21 {
22     int a[]={};
23     Solution sol;
24     int ret = sol.removeDuplicates(a,sizeof(a)/sizeof(int));
25     for(int i=0;i<ret;i++)
26         cout<<a[i]<<" ";
27     cout<<endl;
28     return 0;
29 }
View Code

 

[LeetCode] Remove Duplicates from Sorted Array II

标签:style   blog   http   io   ar   color   os   sp   for   

原文地址:http://www.cnblogs.com/Azhu/p/4157324.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!