#include <iostream>
#include <map>
#include <set>
#include <string>
#include <utility>
using namespace std;
int main()
{
set<string> excluded;
string undel_word;
cout<<"Enter undelete words:"<<endl;
while (cin>>undel_word)
{ pair<set<string>::iterator,bool> ret=excluded.insert(undel_word);
if(!ret.second)
cout<<"reapeated ,Enter another words:"<<endl;
}
for (set<string>::iterator it=excluded.begin();it!=excluded.end();++it)
cout<<*it<<endl;
// 为何上面一段代码不行呢?也是读入单词,输出也可以看到确实已存入map<string>excluded
而后面 if(!excluded.count(word))这段就是读不出来。请教。。谢谢了。。
// excluded.insert(undelete_word); 附:用这段代码编译运行后可以看到输出结果
// excluded.insert("success");
// excluded.insert("class");
string word;
cout<<"Enter a word(Ctrl+Z to end)"<<endl;
while(cin>>word)
{ if(!excluded.count(word))
word.resize(word.size()-1);
cout<<"non-plural version:"<<word<<endl;
cout<<"Enter a word(Ctrl+Z to end)"<<endl;
}
/* { string::size_type length=word.size(); 附:此段为自己写的比较笨拙的一段。。
cout<<"non-plural version: ";
for(string::size_type ix=0;ix!=length;++ix)
cout<<word[ix];
cout<<endl;
}
else cout<<word<<endl;
}
*/
getchar();
return 0;
}
程序大意:通过删除单词尾部的‘s’生成该单词的非复数版本,同时,建立一个map<string>excluded的排除集,用于识别以‘s’结尾,但这个结尾的‘s’又不能删除的单词。例如:放在该排除集中的单词可能有success和class。试用这个排除集编写程序,删除输入单词的复数后缀,而如果输入的是排除集中的单词,则保持该单词不变。。求教...谢谢。。。