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

本文提供了一个C++中使用vector容器进行谓词排序、查找和删除的操作样例,适用于Visual Studio 2008。代码可以直接编译运行,帮助理解如何在实际操作中应用谓词函数。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

题记:使用容器时,经常会使用其进行排序查找和删除,简单的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 ( KeyValueCollection::const_iterator it = coll.begin(); 
		it != coll.end(); ++it )
	{
		std::cout << "Key : " << it->m_strKey 
				  << ", Value : " << it->m_nValue 
				  << std::endl;
	}

	std::cout << " --- end --- " << std::endl;
}

int main()
{
	KeyValueCollection myColl;
	myColl.push_back(KeyValue("Jim", 558));
	myColl.push_back(KeyValue("Tim", 665));
	myColl.push_back(KeyValue("John", 594));
	myColl.push_back(KeyValue("Lance", 625));
	myColl.push_back(KeyValue("Thoms", 563));
	myColl.push_back(KeyValue("KaKa", 668));
	myColl.push_back(KeyValue("Messi", 680));

	ShowAll(myColl);

	//
	// Sort 
	//
	std::sort(myColl.begin(), myColl.end(), CompareKeyValueGreaterValue);

	ShowAll(myColl);

	//
	// find_if 
	//
	if ( std::find_if(myColl.begin(), myColl.end(), 
		 std::bind2nd(std::mem_fun_ref(&KeyValue::EqualKey), std::string("John"))) 
		  != myColl.end() )
	{
		std::cout << "Have found the value." << std::endl;
	}
	else
	{
		std::cout << "Not found the value." << std::endl;
	}

	//
	// remove_if
	// remove_if should erase the element from the return iterator to end.
	//
	KeyValueCollection::iterator pos = std::remove_if(myColl.begin(), myColl.end(), 
		 std::bind2nd(std::mem_fun_ref(&KeyValue::EqualKey), "im"));
	myColl.erase(pos, myColl.end());

	ShowAll(myColl);


#ifdef _DEBUG
	getchar();
#endif
	return 0;
}



后记: 例子比较简单,仅供观赏之用。

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值