map函数

map函数_第1张图片

3.9 map/ multimap容器


3.9.1 map基本概念


简介:
●map中所有元素都是pair
●pair中第一 个元素为key (键值),起到索引作用,第二个元素为value (实值)
●所有元素都会根据元素的键值自动排序
本质:
●map/multimap属于关联式容器, 底层结构是用二二叉树实现。
优点:
●可以根据key值快速找到value值
mab和mulimap区别:
●map不允许容器中有重复key值元素
●multimap允许容器中有重复key值元素


3.9.2 map构造和赋值

 功能描述:
●对map容器进行构造和赋值操作
函数原型: .
构造:

 map函数_第2张图片

 示例:

#include 
#include 
using namespace std;

void printmap(map&m)
{
	for (map::iterator it = m.begin(); it != m.end(); it++)
		cout <<"key=" << (*it).first <<"value=" << it->second << endl;
	cout << endl;
}
void test()
{   //创建map容器
	mapm;
	m.insert(pair(1, 10));
	m.insert(pair(2, 20));
	m.insert(pair(4, 30));
	m.insert(pair(3, 40));

	printmap(m);

	//拷贝构造
	mapm2(m);
	printmap(m2);

	//赋值
	mapm3;
	m3 = m;
	printmap(m3);

}
int main()
{
	test();
	return 0;
}

总结: map中所有元素都是成对出现,插入数据时候要使用对组
 

3.9.3 map大小和交换

功能描述: .
●统计map容器大小以及交换map容器
函数原型:

示例:

#include 
#include 
using namespace std;

void printmap(map&m)
{
	for (map::iterator it = m.begin(); it != m.end(); it++)
		cout <<"key=" << (*it).first <<"value=" << it->second << endl;
	cout << endl;
}
void test()
{   //创建map容器
	mapm;
	m.insert(pair(1, 10));
	m.insert(pair(2, 20));
	m.insert(pair(4, 30));
	m.insert(pair(3, 40));

	if (m.empty())
	{
		cout << "m为空" << endl;
	}
	else
	{
		cout << "m不为空" << endl;
		cout << "m的大小为:" << m.size() << endl;
	}

}
//交换
void test02()
{
	mapm;
	m.insert(pair(1, 10));
	m.insert(pair(2, 20));
	m.insert(pair(3, 30));

	mapm2;
	m2.insert(pair(4, 40));
	m2.insert(pair(5, 50));
	m2.insert(pair(6, 60));

	cout << "交换前:" <

 总结:
.统计大小- size
●判断是否为空--- empty
●交换容器- swap

回3.9.4 map插入和删除


功能描述:
●map容器进行插入数据和删除数据
函数原型:

map函数_第3张图片

示例:

#include 
#include 
using namespace std;

void printmap(map&m)
{
	for (map::iterator it = m.begin(); it != m.end(); it++)
		cout <<"key=" << (*it).first <<"value=" << it->second << endl;
	cout << endl;
}
void test()
{   //创建map容器
	mapm;
	//插入,第一种
	m.insert(pair(1, 10));
	//第二种
	m.insert(make_pair(2, 20));//常用
	//第三种
	m.insert(map::value_type(3, 30));
	//第四种
	m[4] = 40;

	//[]不建议去插数,可以利用key访问到value
	//cout << m[4] << endl;
	printmap(m);

	//删除
	m.erase(m.begin());
	printmap(m);

	m.erase(3);//按照key删除
	printmap(m);

	//清空
	//m.erase(m.begin(), m.end());
	m.clear();
	printmap(m);

}
int main()
{
	test();
	return 0;
}

总结:
map插入方式很多,记住其王即可
●插入--- insert
.删除---erase
.清空--- clear

3.9.5 map查找和统计


功能描述:
●对map容器进行查找数据以及统计数据
函数原型:


示例:

#include 
#include 
using namespace std;

void printmap(map&m)
{
	for (map::iterator it = m.begin(); it != m.end(); it++)
		cout <<"key=" << (*it).first <<"value=" << it->second << endl;
	cout << endl;
}
void test()
{  //查找
	mapm;
	m.insert(pair(1, 10));
	m.insert(pair(2, 20));
	m.insert(pair(4, 30));
	m.insert(pair(3, 40));

	map::iterator pos = m.find(3);

	if (pos != m.end())
	{
		cout << "查到了元素:" << (*pos).first << "value=" << pos->second << endl;
	}
	else
	{
		cout << "未查元素:" << endl;
	}
	//统计
	//map不允许插入重复的key,count结果要么0要么1;
	//multimap统计可能大于1;
	int num = m.count(3);
	cout << "num=" << num << endl;
}
int main()
{
	test();
	return 0;
}


总结:
●查找一
- find
(返回的是迭代器)
●统计--- count (对于map,结果为0或者1)

 

回3.9.6 map容器排序


学习目标: .
●map容器默认排序规则为按照key值进行从小到大排序,掌握如何改变排序规则
主要技术点:
■利用仿函数,可以改变排序规则

示例:

#include 
#include 
using namespace std;
class  cmp
{
public:
	bool operator()(int  v1, int  v2)
	{
		//降序
		return v1 > v2;
	}
};

void printmap(map&m)
{
	for (map::iterator it = m.begin(); it != m.end(); it++)
		cout <<"key=" << (*it).first <<"value=" << it->second << endl;
	cout << endl;
}
void test()
{  //查找
	mapm;
	m.insert(pair(1, 10));
	m.insert(pair(2, 20));
	m.insert(pair(4, 30));
	m.insert(pair(3, 40));
	m.insert(pair(5, 50));

	
}
int main()
{
	test();
	return 0;
}



 

你可能感兴趣的:(c++函数引用,c++,容器,蓝桥杯)