当前位置:   article > 正文

map函数(C++黑马程序员笔记)_c++map函数

c++map函数

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容器进行构造和赋值操作
函数原型: .
构造:

示例:

#include <iostream>
#include <map>
using namespace std;

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

	printmap(m);

	//拷贝构造
	map<int, int>m2(m);
	printmap(m2);

	//赋值
	map<int, int>m3;
	m3 = m;
	printmap(m3);

}
int main()
{
	test();
	return 0;
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35

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

3.9.3 map大小和交换

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

示例:

#include <iostream>
#include <map>
using namespace std;

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

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

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

	map<int, int>m2;
	m2.insert(pair<int, int>(4, 40));
	m2.insert(pair<int, int>(5, 50));
	m2.insert(pair<int, int>(6, 60));

	cout << "交换前:" <<endl;
	printmap(m);
	printmap(m2);

	m.swap(m2);
	cout << "交换后:" << endl;
	printmap(m);
	printmap(m2);

}
int main()
{
	test02();
	return 0;
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47
  • 48
  • 49
  • 50
  • 51
  • 52
  • 53
  • 54
  • 55
  • 56
  • 57

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

回3.9.4 map插入和删除

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

示例:

#include <iostream>
#include <map>
using namespace std;

void printmap(map<int,int>&m)
{
	for (map<int,int>::iterator it = m.begin(); it != m.end(); it++)
		cout <<"key=" << (*it).first <<"value=" << it->second << endl;
	cout << endl;
}
void test()
{   //创建map容器
	map<int, int>m;
	//插入,第一种
	m.insert(pair<int, int>(1, 10));
	//第二种
	m.insert(make_pair(2, 20));//常用
	//第三种
	m.insert(map<int, int>::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;
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44

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

3.9.5 map查找和统计

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


示例:

#include <iostream>
#include <map>
using namespace std;

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

	map<int, int>::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;
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39

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

回3.9.6 map容器排序

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

示例:

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

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

	
}
int main()
{
	test();
	return 0;
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/从前慢现在也慢/article/detail/636598
推荐阅读
相关标签
  

闽ICP备14008679号