首页 > 其他 > 详细

Remove Duplicates from Sorted Array

时间:2014-03-14 14:03:00      阅读:426      评论:0      收藏:0      [点我收藏+]

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

解题思路:这道题是给出一个排序数组,去除重复的元素并且输出长度。这道题思路比较简单,就是从第一个元素和第二个元素开始比较,如果不相同,则将借用一个变量nLength,将第二个元素存入A[++nLength]中,若相同,则不予理睬。记住最后的长度要加1,毕竟我们是从0开始计数的,数组长度为最末元素指引序号加1;

bubuko.com,布布扣
class Solution {
public:
    int removeDuplicates(int A[], int n) {
        int nLength=0;
        if(A==NULL||n==0)
            return 0;
        for(int i=1;i<n;i++)
        {
            if(A[i]!=A[nLength])
            {
                ++nLength;
                A[nLength]=A[i];
            }
        }
        return nLength+1;
    }
};
bubuko.com,布布扣

Remove Duplicates from Sorted Array,布布扣,bubuko.com

Remove Duplicates from Sorted Array

原文:http://www.cnblogs.com/awy-blog/p/3599642.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!