C++-编程之美传话问题,请大神指出错误

发布于 2016-11-25 17:31:11 字数 1355 浏览 1147 评论 1

我在本地试过没问题,就是不知道一上传就wrong answer。请大神帮忙指出错误。
官方的网页要登陆才能上,附上另一个可以直接上的网址。http://blog.csdn.net/asd_wolf/article/details/8765863

#include <iostream>
#include <string>
#include <map>
#include <sstream>
using namespace std;
typedef map<string, string>::value_type valType;
typedef map<string, string>::const_iterator iTerator;
int main(){
map<string,string> word_rep;
iTerator it;
int T, N, M,//T:测试数据数,N:游戏人数,M:词条数
i, j;
string word1, word2, line, word;
cin>>T;
for(i=1; i!=T+1; i++){
cin>>N>>M;
for(j=0; j!=M; j++){
cin>>word1>>word2;
word_rep.insert(valType(word1, word2));
}
cin.get();
getline(cin, line);
cout<<"Case #"<<i<<':';
istringstream stream(line);
while(stream>>word){
for(j=0; j!=N-1; j++){
it = word_rep.find(word);
if(it != word_rep.end()){
word = it->second;
}
}
cout<<' '<<word;
}
cout<<endl;
}
return 0;
}

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

偏爱自由 2017-06-01 19:29:39

你这个是错误的,因为不能保证每一个单词之间都是一个空格....也就是说单词之间可能是多个空格...

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文