第十四周(OOP版電子詞典)
阿新 • • 發佈:2019-02-16
*作者:王忠
*完成日期:2015.6.10
*版本號:v1.0
*
*問題描述:做一個簡單的電子詞典。在檔案dictionary.txt中,儲存的是英漢對照的一個詞典,詞彙量近8000個,英文、中文釋義與詞性間用’\t’隔開。
(1)程式設計序,由使用者輸入英文詞,顯示詞性和中文釋義。
提示1:如果要用OOP完成這個詞典(當然也可以用OO方法實現),可以定義一個Word類表示一個詞條,其中的資料成員string english; 表示英文單詞,string chinese;表示對應中文意思,string word_class;表示該詞的詞性;還可以定義一個Dictionary類,用來表示詞典,其中Word words[8000]成員表示詞典中的詞條,int wordsNum;表示詞典中的詞條數,在建構函式中從檔案讀入詞條,而專門增加一個成員函式用於查單詞。
提示2:檔案中的詞彙已經排序,故在查詢時,用二分查詢法提高效率。
提示3:這樣的專案,最好用多檔案的形式組織
*輸入描述:
*程式輸出:
cout<<k<<"-->"<<word[index].getword_class()<<"\t"<<word[index].getchinese()<<endl;這一句可以換成 class()+"\t"<<word 可以直接使用一個+號 這是為什麼啊 有什麼好處#include <iostream> #include <fstream> #include <cstdlib> #include <string> using namespace std; class Word { public: void setword(string e,string c,string w); string getchinese(); string getword_class(); int compare(string ); private: string english; string chinese; string word_class; }; void Word::setword(string e,string c,string w) { english=e; chinese=c; word_class=w; } string Word::getchinese() { return chinese; } string Word::getword_class() { return word_class; } int Word::compare(string k) { return english.compare(k); } class Dictionary { public: Dictionary(); int serch(int low,int high,string k); void display(string k); private: Word word[8000]; int wordNum; }; Dictionary::Dictionary() { string e,c,w; wordNum=0; ifstream infile("dictionary.txt",ios::in); if(!infile) { cerr<<"open error"; exit(1); } while(!infile.eof()) { infile>>e>>c>>w; word[wordNum].setword(e,w,c); wordNum++; } infile.close(); } int Dictionary::serch(int low,int high,string k) { int mid; while(low<=high) { mid=(low+high)/2; if(word[mid].compare(k)==0) return mid; if(word[mid].compare(k)>0) high=mid-1; else low=mid+1; } return -1; } void Dictionary::display(string k) { int low=0,high=wordNum-1; int index=serch(low,high,k); if(index>=0) cout<<k<<"-->"<<word[index].getword_class()<<"\t"<<word[index].getchinese()<<endl; else cout<<"查無此詞"<<endl; } int main() { Dictionary d; string key; cout<<"輸入英文單詞"<<endl; while(cin>>key&&key!="0000") { d.display(key); } cout<<"好用再來"<<endl; return 0; }