STL中的multimap---顺便说说如何查找同一关键字对应的所有值(利用count, lower_bound/upper_bound, equal_range)

73 篇文章 32 订阅

       我个人感觉哈, map的应用场景比multimap更多, 不过, 我们还是来学一下multimap。 我们知道, multimap中, 一个关键字可能对应多个不同的值, 怎么获取呢?我们来看程序, 接招(介绍三种方法):

 

      结果为:

 

#pragma warning(disable : 4786)
#include <map>
#include <string>
#include <iostream>
using namespace std;

int main()
{
	multimap<int, string> mp;
	mp.insert(pair<int, string>(3, "hehe"));
	mp.insert(pair<int, string>(4, "haha"));
	mp.insert(pair<int, string>(2, "error"));
	mp.insert(pair<int, string>(3, "good"));
	mp.insert(pair<int, string>(3, "ok"));
	mp.insert(pair<int, string>(3, "hehe"));

	multimap<int, string>::iterator it;
	for(it = mp.begin(); it != mp.end(); it++)
	{
		cout << it->first << "--->";
		cout << it->second << endl;
	}

	// 方法一
	int n = mp.count(3); // 3的个数
	cout << n << endl;

	int i = 0;
	it = mp.find(3); // 第一个3的位置
	for(i = 0; i < n; i++)
	{
		cout << it->first << "--->";
		cout << it->second << endl;
		it++; // 所有的3必然是相连的
	}

	cout << "---------------------------" << endl;

	// 方法二:
	for(it = mp.lower_bound(3); it != mp.upper_bound(3); it++)
	{
		cout << it->first << "--->";
		cout << it->second << endl;
	}

	cout << "---------------------------" << endl;

	// 方法三:
	pair<multimap<int, string>::iterator, multimap<int, string>::iterator > pos;
	for(pos = mp.equal_range(3); pos.first != pos.second; pos.first++)
	{
		cout << pos.first->first << "--->";
		cout << pos.first->second << endl;
	}

	return 0;
}

      结果为:

 

2--->error
3--->hehe
3--->good
3--->ok
3--->hehe
4--->haha
4
3--->hehe
3--->good
3--->ok
3--->hehe
---------------------------
3--->hehe
3--->good
3--->ok
3--->hehe
---------------------------
3--->hehe
3--->good
3--->ok
3--->hehe
Press any key to continue
 

      好吧, 先这样。


 


 

评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值