容器vector含有谓词的排序查找和删除样例

题记:使用容器时,经常会使用其进行排序查找和删除,简单的sort, find, erase/remove不用多说了,关键是使用谓词时的使用比较麻烦,这里仅仅列举了个例子进行保留,以备以后可以直接拿来使用。

 

样例代码: COPY后编译可以直接运行(使用Visual Studio 2008 编译通过)。

#include <iostream>
#include <vector>
#include <algorithm>
#include <functional>

#include <string>

struct KeyValue
{
	std::string m_strKey;
	int m_nValue;
	KeyValue() : m_strKey(""), m_nValue(0) {}
	KeyValue(std::string strKey, int nValue) : m_strKey(strKey), m_nValue(nValue) {}
	bool EqualKey(std::string strKey)
	{
		return m_strKey.find(strKey) != -1 ? true : false;
	}
};

bool CompareKeyValueGreaterValue(KeyValue val1, KeyValue val2)
{
	return val1.m_nValue > val2.m_nValue;
}

typedef std::vector<KeyValue> KeyValueCollection;

void ShowAll(const KeyValueCollection& coll)
{
	std::cout << " --- begin --- " << std::endl;
	for ( 
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值