• 博客园logo
  • 会员
  • 周边
  • 新闻
  • 博问
  • 闪存
  • 众包
  • 赞助商
  • Chat2DB
    • 搜索
      所有博客
    • 搜索
      当前博客
  • 写随笔 我的博客 短消息 简洁模式
    用户头像
    我的博客 我的园子 账号设置 会员中心 简洁模式 ... 退出登录
    注册 登录

cynchanpin

  • 博客园
  • 联系
  • 订阅
  • 管理

View Post

[leetcode]Remove Duplicates from Sorted Array II

问题描写叙述:

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


基本思路:

与Remove Duplicates from Sorted Array方法类似。 能够參看《Remove Duplicates from Sorted Array》。



代码:

int removeDuplicates(int A[], int n) { //C++
        if(n <=2)
            return n;
        int newp = 1, times = 0;
        for(int i = 1; i < n; i++)
        {
            if(A[i] == A[i-1])
            {
                if(times == 0)
                {
                    A[newp] = A[i];
                    newp++;
                    times++;
                }
            }
            else 
            {
                times = 0;
                A[newp] = A[i];
                newp++;
            }
        }
        return newp;
    }


posted on 2017-04-23 20:18  cynchanpin  阅读(134)  评论(0)    收藏  举报

刷新页面返回顶部
 
博客园  ©  2004-2025
浙公网安备 33010602011771号 浙ICP备2021040463号-3