码迷,mamicode.com
首页 > 其他好文 > 详细

map

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

标签:blog   http   os   io   strong   文件   for   2014   

#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

标签:blog   http   os   io   strong   文件   for   2014   

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

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!