请问C++中标准库中有没有类似于字典Dictionary的函数?可以实现关键字的重复值的筛选的
2个回答
光点科技
2023-08-15 广告
2023-08-15 广告
通常情况下,我们会按照结构模型把系统产生的数据分为三种类型:结构化数据、半结构化数据和非结构化数据。结构化数据,即行数据,是存储在数据库里,可以用二维表结构来逻辑表达实现的数据。最常见的就是数字数据和文本数据,它们可以某种标准格式存在于文件...
点击进入详情页
本回答由光点科技提供
展开全部
#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;
}
}
#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;
}
}
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询