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

[LeetCode]80 Remove Duplicates from Sorted Array II

时间:2015-01-04 19:32:41      阅读:133      评论:0      收藏:0      [点我收藏+]

标签:leetcode

https://oj.leetcode.com/problems/remove-duplicates-from-sorted-array-ii/

http://blog.csdn.net/linhuanmars/article/details/24343525

public class Solution {
    public int removeDuplicates(int[] A) {
        
        if (A == null)
            return -1; // invalid input
            
        if (A.length == 0 || A.length == 1)
            return A.length;    // No need further logic.
            
        int lastv = A[0];
        int newlen = 1;
        int hit = 0;
        for (int i = 1 ; i < A.length ; i ++)
        {
            int curv = A[i];
            if (curv != lastv)
            {
                A[newlen] = curv;
                newlen ++;
                hit = 0;
                lastv = curv;
            }
            else if (hit == 0)
            {
                // We are still OK.
                A[newlen] = curv;
                newlen++;
                hit ++;
            }
        }
        
        return newlen;
    }
}


[LeetCode]80 Remove Duplicates from Sorted Array II

标签:leetcode

原文地址:http://7371901.blog.51cto.com/7361901/1599015

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