c++中的dictionary对象:map的使用备忘

复制代码
#include <map>
#include<string> //一定要加,和string.h 不一样 #include <iostream> using namespace std;   
void main()
{

map
<string, int> dic; dic.insert(pair<string, int>("a", 5)); dic.insert(pair<string, int>("b", 2)); dic.insert(pair<string, int>("a", 3)); //allow duplicate key dic.insert(pair<string, int>("c", 7)); dic.insert(pair<string, int>("d", 9)); dic.insert(pair<string, int>("e", 20)); dic["c"] = 8; map<string,int>::iterator finder;; finder=dic.find("c"); if(finder==dic.end()) cout<<"we do not find 112"<<endl; else { cout<<"total:"<<dic.size()<<endl; cout<<"wo find c:"<<dic["c"]<<endl; dic.erase(finder); //delete cout<<"total:"<<dic.size()<<endl; } int c =0; c = getchar();
}
复制代码

 可嵌套使用:

map <string, pair<int, int>> resources;
resources.insert(pair<string, pair<int, int>>("name",pair<int, int>(5,7)));

 怎么读取呢?

string data = resources[string("ABC.TTX")].first;

 

posted on   空明流光  阅读(4634)  评论(0编辑  收藏  举报

编辑推荐:
· 浏览器原生「磁吸」效果!Anchor Positioning 锚点定位神器解析
· 没有源码,如何修改代码逻辑?
· 一个奇形怪状的面试题:Bean中的CHM要不要加volatile?
· [.NET]调用本地 Deepseek 模型
· 一个费力不讨好的项目,让我损失了近一半的绩效!
阅读排行:
· 微软正式发布.NET 10 Preview 1:开启下一代开发框架新篇章
· 没有源码,如何修改代码逻辑?
· PowerShell开发游戏 · 打蜜蜂
· 在鹅厂做java开发是什么体验
· WPF到Web的无缝过渡:英雄联盟客户端的OpenSilver迁移实战

导航

< 2025年2月 >
26 27 28 29 30 31 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 1
2 3 4 5 6 7 8
点击右上角即可分享
微信分享提示