#include<iostream>
#include<fstream>
#include<stdlib.h>
#include<string.h>
#include<vector>
#define MAX 50
#define MAXN 20
using namespace std;
typedef struct{
char word[MAXN];
char explain[MAX];
}Word;
vector<Word> my_word_book;
vector<Word>::iterator it1;
void build_word();
void Search(char* word_look,vector<Word> my_book);
void Search1(char* word_look,vector<Word> my_book);
bool Check(char* word1, char* word2);
int main()
{
char word[MAXN];
build_word();//建单词本
int t;
cout<<"英译汉 请输入1,汉译英 请输入2:"<<endl;
cin>>t;
cout<<"input the word you want to search: "<<endl;
cin>>word;
if(t==1){
Search(word,my_word_book);
}
else
Search1(word,my_word_book);
return 0;
}
//建立单词库
void build_word()
{
ifstream txtfile;//建立文件流
txtfile.open("C:\\Users\\lenovo\\Desktop\\单词库.txt");//打开文件,读取数据
//判断文件是否打开正确
if(!txtfile)
{
cerr<<"File open error!"<<endl;
exit(-1);
}
int i=0;
Word w1,w2;
while(!txtfile.eof())
{
txtfile>>w1.word>>w1.explain;//依次读入每个单词和解释
my_word_book.push_back(w1); //压入vector中
}
txtfile.close();//关闭文件
}
void Search(char* word,vector<Word> my_book)
{
for(it1=my_book.begin();it1!=my_book.end();it1++)
{
if(strcmp(it1->word,word)==0)
{
cout<<it1->explain<<endl;
exit(-1);
}
}
cout<<"查询不到该单词!"<<endl;
//cout<<"查询不到该单词!"<<endl;
}
void Search1(char* word, vector<Word>my_book){
for(it1=my_book.begin();it1!=my_book.end()-1;it1++){
if(Check(word,it1->explain)){
cout<<it1->word<<endl;
}
}
}
bool Check(char* word1, char *word2){
if(strstr(word2,word1)){
return true;
}
else
return false;
}
文件操作举例
最新推荐文章于 2024-11-02 20:20:37 发布
本文介绍了使用C++实现的单词库管理系统,能进行英文到中文和中文到英文的查询。通过`build_word`函数从文本文件中读取并存储单词和解释,`Search`和`Search1`函数分别实现了单词搜索功能。核心在于`Check`函数的字符串匹配,用于辅助单词查找。
摘要由CSDN通过智能技术生成