使用vector进行排序插入

如果我们有个vector容器,如std::vector<int> vMyVec,里面现在已经有1,3,5,7, 四个元素,现在需要往1,3之间插入2这个元素,那怎么办呢,更或者vector里面是个自定义的类型,需要做这种插入操作,那可以采用下面的方法
 
#include "stdafx.h"
#include <vector>
#include <algorithm>
class CEntity
{
public:
	CEntity( int nValue=0 ):m_nValue(nValue)
	{

	}
	int m_nValue;
};

class CLess
{
public:
	bool operator()( const CEntity& lh, const CEntity& rh )
	{
		//这里还可以进行一些自定义的判断方式

		return lh.m_nValue < rh.m_nValue;
	}
};
int _tmain(int argc, _TCHAR* argv[])
{
     	std::vector<CEntity> vEntity1;
	std::vector<CEntity> vEntity2;
	for ( int n=0; n<10; n++ )
	{
		nValue = rand()%10;
		vEntity1.insert(std::upper_bound(vEntity1.begin(),vEntity1.end(),CEntity(nValue),CLess()), CEntity(nValue) );
		vEntity2.push_back( CEntity(nValue) );
	}
}


 


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值