请问C++中标准库中有没有类似于字典Dictionary的函数?可以实现关键字的重复值的筛选的

 我来答
百度网友9308069
2016-05-03 · TA获得超过1万个赞
知道大有可为答主
回答量:3947
采纳率:89%
帮助的人:1854万
展开全部
C++ STL的set和map都能做这种
在晴天的雨伞
2016-05-03 · TA获得超过6868个赞
知道大有可为答主
回答量:5761
采纳率:86%
帮助的人:1151万
展开全部
#include <string>
#include <iostream>
using namespace std;
static int count=0;
class Dictionary{
public:
void put(string eng,string chi){
en[count]=eng;
ch[count]=chi;
count++;
}
string get(string eng){
for(int i=0;i<count;i++){
if(eng.compare(en[i])==0){
return ch[i];
}
}
cout<<"没有找到"<<endl;
}
private:
string en[10],ch[10];
};

int main() {
Dictionary dictionary;

// initialize dictionary
while (true) {
string english;
cin >> english;
if (english == "end") break;
string chinese;
cin >> chinese;
dictionary.put(english, chinese);
}

// lookup dictionary
while (true) {
string english;
cin >> english;
if (english == "end") break;
cout << dictionary.get(english) << endl;
}
}
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

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

类别

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

说明

0/200

提交
取消

辅 助

模 式