首页 > 其他 > 详细

map

时间:2014-08-10 18:24:30      阅读:307      评论:0      收藏:0      [点我收藏+]

#include <iostream>
#include <string>
#include <map> //头文件
using namespace std;

map<string,int> my; //全局变量 0
map<string,int> ::iterator it ; //指针
int main( )
{

int i ;
string s1;
for(i=1; i<=5 ;i++)
{
cin>>s1;
my[s1]++;
}
for(it=my.begin() ; it!=my.end() ; it++ )
cout<<(*it).first <<" "<<(*it).second <<endl;
}

 

 


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

map<string,int> my;
map<string,int> ::iterator it ;
int main( )
{

int i ;
string s1;
for(i=1; i<=5 ;i++)
{
cin>>s1;
my[s1]++;
}
for(it=my.begin() ; it!=my.end() ; it++ )
cout<<(*it).first <<" "<<(*it).second <<endl;

}

 

 

 

bubuko.com,布布扣

 

 

 

bubuko.com,布布扣

 

 

 

 

bubuko.com,布布扣

 

 

bubuko.com,布布扣

 

 

bubuko.com,布布扣

 

 

bubuko.com,布布扣

map,布布扣,bubuko.com

map

原文:http://www.cnblogs.com/2014acm/p/3903150.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!