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。请直接在我源程序上修改,谢谢!
展开
 我来答
kaixingui2012
2015-04-18 · TA获得超过4.2万个赞
知道大有可为答主
回答量:1.4万
采纳率:81%
帮助的人:6898万
展开全部
你现在的问题是什么? 我测试了一下,可以用的,但不知道正确输出应该是什么样子?有没有测试数据?
更多追问追答
追问
亲 就是说我输入字典顺序的最后一个字符串的时候 不能输出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;
        }
    }
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式