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

26.Remove Duplicates from Sorted Array

时间:2015-02-12 22:52:00      阅读:143      评论:0      收藏:0      [点我收藏+]

标签:

Given a sorted array, remove the duplicates in place such that eachelement appear only once and return the new length.

Do not allocate extra space for another array, you must do this in placewith constant memory.

For example,
Given input array A = [1,1,2],

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

HideTags

 Array Two Pointers



#pragma once
#include<iostream>
using namespace std;

int removeDuplicates(int A[], int n) 
{
	if (n == 1)
		return n;
	if (n == 0)
		return NULL;
	int p = 0;
	int pp = 0;
	int count = 1;//记录不同元素个数,A[0]位置不会在一下被检测出来,所以预置1
	while (pp < n)
	{
		if (A[pp] != A[p])
		{
			A[++p] = A[pp];
			count++;
		}
		pp++;
	}
	return count;
}

void main()
{
	
	system("pause");
}

 

26.Remove Duplicates from Sorted Array

标签:

原文地址:http://blog.csdn.net/hgqqtql/article/details/43767791

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