C++Vector简单操作

3 篇文章 0 订阅

好像vector和QVector不太一样。

//iterator erase (const_iterator position);
//iterator erase (const_iterator first, const_iterator last);
//vector删除元素:
// An iterator pointing to the new location of the element that followed the last element erased by the function call. 
// This is the container end if the operation erased the last element in the sequence.
// Member type iterator is a random access iterator type that points to elements.

#include <QtCore/QCoreApplication>
#include <qDebug>
#include <vector>

using namespace std;

bool compare(const int &v1,const int &v2)
{
	return v1 < v2;
}

void print(vector<int> &vInt)
{
	qDebug()<<"size: "<<vInt.size();
	for(vector<int>::iterator it=vInt.begin(); it!=vInt.end(); ++it)
		qDebug()<<*it;
}

int main(int argc, char *argv[])
{
	QCoreApplication a(argc, argv);
	vector<int> vInt;
	vInt.push_back(5);
	vInt.push_back(1);
	vInt.push_back(6);
	vInt.push_back(2);
	vInt.push_back(13);
	vInt.push_back(4);
	vInt.push_back(7);
	vInt.push_back(3);

	print(vInt);
	///删除某一元素
	for(vector<int>::iterator it=vInt.begin(); it!=vInt.end(); )
	{
		if(*it==13)
		{
			it=vInt.erase(it);
			break;
		}
		else
			++it;
	}

	print(vInt);
	//排序操作
	sort(vInt.begin(),vInt.end(),compare);

	vInt.erase(vInt.begin(),vInt.begin()+3);

	print(vInt);

	return a.exec();
}
/*
size:  8
5
1
6
2
13
4
7
3
size:  7
5
1
6
2
4
7
3
size:  4
4
5
6
7
.....
*/
erase返回一个指向最后一个被erase的元素的下一个元素指针。

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值