map

Posted tingtin

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了map相关的知识,希望对你有一定的参考价值。

 1 map和set两种容器的底层结构都是红黑树,所以容器中不会出现相同的元素,
 2 因此count()的结果只能为0和1,可以以此来判断键值元素是否存在
 3 (当然也可以使用find()方法判断键值是否存在)。
 4 拿map<key,value>举例,find()方法返回值是一个迭代器,
 5 成功返回迭代器指向要查找的元素,失败返回的迭代器指向end。
 6 count()方法返回值是一个整数,1表示有这个元素,0表示没有这个元素。
 7 #include<iostream>
 8 #include<map>
 9 #include<string>
10 using namespace std;
11 
12 int main()
13 {
14     map<int,string>maps;
15     map<int,string>::iterator it;
16     if(maps.find(1)==maps.end())//返回迭代器。
17     {
18         cout<<"没有1这个元素"<<endl;
19     }
20     if(maps.count(1)==0)//只返回1或0。
21     {
22         cout<<"没有1这个元素"<<endl;
23     }
24     //添加元素1
25     maps[1]="one";
26 
27     if(maps.find(1)!=maps.end())
28     {
29          it=maps.find(1);
30          cout<<it->second<<endl;
31         //cout<<"有1这个元素"<<endl;
32     }
33     if(maps.count(1))
34     {
35         cout<<"有1这个元素"<<endl;
36     }
37     return 0;
38 }

 

以上是关于map的主要内容,如果未能解决你的问题,请参考以下文章

将多个输出中的hls属性设置为单独的片段代码

android google map supportmap片段无法在片段中初始化

比较有用的php代码片段

JavaScript 代码片段

代码片段 - Golang 实现集合操作

Android Studio Map setOnMarkerClickListener 不在片段上工作