專案 OOP版電子詞典

2021-07-13 22:14:18 字數 1132 閱讀 9716

問題及**:

/*

*檔名稱:main.cpp

*作 者:李磊濤

*版 本 號:v1.0

**問題描述:專案-oop版電子詞典。

*輸入描述:要查詢單詞。

*程式輸出:漢語意思。

*/#include #include#include#includeusing namespace std;

class word

;void word::set(string a,string b,string c)

int word::compare(string k)

string word::getchinese()

string word::getword_class()

class dictionary

;dictionary ::dictionary()

infile.close();

}int dictionary::binseareh(int low, int high, string key)

if(words[mid].compare(key)>0)

high=mid-1; //繼續在w[low..mid-1]中查詢

else

low=mid+1; //繼續在w[mid+1..high]中查詢

} return -1; //當low>high時表示查詢區間為空,查詢失敗

}void dictionary::sword(string k)

} while(key!="0000");

cout<

執行結果:

知識點總結:

通過該程式,強化了我對簡單程式結構的認識。

學習心得:

期間有很多小錯誤,要繼續寫程式爭取早日掌握c++。

問題及**:

執行結果:

知識點總結:

通過該程式,強化了我對簡單程式結構的認識。

學習心得:

期間有很多小錯誤,要繼續寫程式爭取早日掌握c++。

OOP版電子詞典

輸入 檔名 sum123.cpp 作 者 林海雲 完畢日期 2015年8月19日 版 本 號 v2.0 問題描寫敘述 做乙個簡單的電子詞典。在檔案dictionary.txt中。儲存的是英漢對比的乙個詞典,詞彙量近8000個,英文 中文釋義與詞性間用 t 隔開。輸入描寫敘述 文字輸入 程式輸出 輸出...

專案48 OOP版電子詞典

做乙個簡單的電子詞典。在檔案dictionary.txt中,儲存的是英漢對照的乙個詞典,詞彙量近8000個,英文 中文釋義與詞性間用 t 隔開。include include include includeusing namespace std class word void word set st...

OOP版電子詞典拓展1

程式的版權和版本宣告部分 檔名稱 test.cpp 作 者 任子儀 完成日期 2014年 6月 7日 版 本 號 v12.1 輸入描述 無 問題描述 程式輸出 問題分析 略 演算法設計 略 include include include includeusing namespace std clas...