
C++ map问题请教(200悬赏)
#include<iostream>#include<map>#include<algorithm>#include<string>usingnamespacestd;i...
#include <iostream>
#include <map>
#include <algorithm>
#include <string>
using namespace std;
int main()
{
map <string,int> cow;
map <string,int> :: iterator it;
int i;
cin>>i;
for(int k=0; k<i; k++)
{
string get_str;
cin>>get_str;
cow.insert(pair<string,int>(get_str,k+1));
}
string a;
cin>>a;
for(it=cow.begin(); it!=cow.end(); it++)
{
if(a==it->first)
{
if(it!=cow.end())
{
it++;
cout<<it->first;
break;
}
else
{
cout<<"The End";
break;
}
}
}
return 0;
}
输出按照字典顺序排列的a下一个字符串,如果a是最后一个字符串,那么就输出the end。请直接在我源程序上修改,谢谢! 展开
#include <map>
#include <algorithm>
#include <string>
using namespace std;
int main()
{
map <string,int> cow;
map <string,int> :: iterator it;
int i;
cin>>i;
for(int k=0; k<i; k++)
{
string get_str;
cin>>get_str;
cow.insert(pair<string,int>(get_str,k+1));
}
string a;
cin>>a;
for(it=cow.begin(); it!=cow.end(); it++)
{
if(a==it->first)
{
if(it!=cow.end())
{
it++;
cout<<it->first;
break;
}
else
{
cout<<"The End";
break;
}
}
}
return 0;
}
输出按照字典顺序排列的a下一个字符串,如果a是最后一个字符串,那么就输出the end。请直接在我源程序上修改,谢谢! 展开
1个回答
展开全部
你现在的问题是什么? 我测试了一下,可以用的,但不知道正确输出应该是什么样子?有没有测试数据?
更多追问追答
追问
亲 就是说我输入字典顺序的最后一个字符串的时候 不能输出The End
比如
2
ASD
BCD
BCD
不能输出The End
追答
for(it=cow.begin(); it!=cow.end(); it++)
{
if(a==it->first)
{
it++; //先++,再判断,因为cow.end()是数据之后的位置!不是最后一个数据!
if(it!=cow.end())
{
cout<<it->first;
}
else
{
cout<<"The End";
}
cout<<endl ;
break;
}
}
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询