map c++ map<string,int>dictionary; 如何访问12对应的string 15
1个回答
展开全部
很简单,现场写了一个小代码
#include<iostream>
#include<map>
#include<string>
using namespace std;
void main()
{
map<string,int> dict;
dict["hello"]=12;
dict["world"]=13;
map<string,int>::iterator pos=dict.begin();
for(;pos!=dict.end();++pos)
if(pos->second==12)
cout<<pos->first<<endl;
}
#include<iostream>
#include<map>
#include<string>
using namespace std;
void main()
{
map<string,int> dict;
dict["hello"]=12;
dict["world"]=13;
map<string,int>::iterator pos=dict.begin();
for(;pos!=dict.end();++pos)
if(pos->second==12)
cout<<pos->first<<endl;
}
追问
好麻烦,就没有dict[12]之类的方法吗
追答
没有
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询