【Leetcode】26 Remove Duplicates from Sorted Array

//题目

Given a sorted array nums, 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 by modifying the input array in-place with O(1) extra memory.

//给定一个从小到大排序的数组,将其中所有出现次数>1的元素去除,返回最终的元素个数

#include <iostream>
#include <vector>
using namespace std;
class Solution {
public:
	int removeDuplicates(vector<int>& nums) {
		//使用两个循环不重复的遍历,但是否有重复的元素,有就删除一个
		long length = nums.size();
		for(int i = 0; i < nums.size(); i++)
			for(int j = i+1; j < nums.size(); j++){
				if(nums[i]==nums[j]){
					nums.erase(nums.begin()+j);
					j=j-1; //重复元素删除后,下标改变,但是vector里面不好移动,所以向左移动j来防止漏掉某些元素
				}
				
			}
		long n = nums.size();
		return n;
	}
};

int main(int argc, const char * argv[]) {
	Solution s1;
	vector<int> nums;
	nums.push_back(1);
	nums.push_back(1);
	nums.push_back(1);
	nums.push_back(1);
	nums.push_back(5);
	cout<<s1.removeDuplicates(nums);
	return 0;
}


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值