[LeetCode]Remove Duplicates from Sorted Array

时间:2014-05-22 23:06:48   收藏:0   阅读:271

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

class Solution {
public:
    int removeDuplicates(int A[], int n) {
        int i, j;
	for (i = j = 1; i < n; i++)
	{
		if (A[i] != A[i - 1])
		{
			A[j++] = A[i];
		}
	}
	return n ? j : 0;
    }
};




[LeetCode]Remove Duplicates from Sorted Array,布布扣,bubuko.com

评论(0
© 2014 mamicode.com 版权所有 京ICP备13008772号-2  联系我们:gaon5@hotmail.com
迷上了代码!