C++英文詞典的簡(jiǎn)單實(shí)現(xiàn)_第1頁(yè)
C++英文詞典的簡(jiǎn)單實(shí)現(xiàn)_第2頁(yè)
C++英文詞典的簡(jiǎn)單實(shí)現(xiàn)_第3頁(yè)
已閱讀5頁(yè),還剩2頁(yè)未讀, 繼續(xù)免費(fèi)閱讀

下載本文檔

版權(quán)說明:本文檔由用戶提供并上傳,收益歸屬內(nèi)容提供方,若內(nèi)容存在侵權(quán),請(qǐng)進(jìn)行舉報(bào)或認(rèn)領(lǐng)

文檔簡(jiǎn)介

1、用散列家實(shí)現(xiàn)簡(jiǎn)單的英丈詞與20年4月4 口星期一 一 »頭丈件:文件名:Word.h單詞類的定義#include <cstring>#include <iostream.h>class Wordfriend ostream& operator«(ostream &os, const Word & obj)重載輸出函數(shù)int n=strlen(obj.word);for(int i=0; i<n; +i) os « obj.word(i);return os;public:char word25; 用于存放單詞W

2、ord() for(int i=0; i<25; +i) wordi=,0,;bool operator=(Word &r)重載判斷相等符號(hào)if(strcmp(word/r.word)=0) return true;else return false;void operator=(Word &r) strcpy(word,r.word);重載賦值運(yùn)算符;文件名:openHashTable.h 開散列表#include <cstring>#include <iostream.h>template <class Type> class op

3、enHashTable private:struct node/私有結(jié)點(diǎn) Type data;struct node 才next;node() next = NULL;node(Type &d) data = d; next = NULL;node *array;int(*key)(const Type &x);關(guān)鍵字static int defaultKey(const int &k) return k;/缺省值int size;public:openHashTable(int length =101, int(* f)(const Type &x)二 def

4、aultKey);ope nH ashTable();int find(Type &x); 查找函數(shù)bool insert(Type &x);插入函數(shù)bool remove( Type &x); /刪除函數(shù)void output(); /輸岀詞典函數(shù);/=開散列表函數(shù)的實(shí)現(xiàn)=構(gòu)造函數(shù)的實(shí)現(xiàn)template <class Type>openHashTable<Type>:openHashTable(int length, int(*f)(const Type &x)size = len gth;array = new node *size;

5、key = f;for(int i=0; i<size; +i) arrayi = new node;析構(gòu)函數(shù)的實(shí)現(xiàn)template <class Type>ope nH ashTable<Type>:ope nH ashTable()node *p, *q;for(int i=0; i<size; +i)p = arrayi;/分別析構(gòu)每一個(gè)桶的相應(yīng)鏈 doq = p->next; delete p;p = q;while(p!=NULL);delete array;插入函數(shù)的實(shí)現(xiàn)template <class Type>bool ope

6、nHashTable<Type>:insert(Type &x)int pos;node *p;pos = key(x)%size; 計(jì)算相對(duì)應(yīng)的關(guān)鍵字 p = arraypos-> next;while(p!=NULL && !(p->data=x) p = p->next;if(p=NULL)p = new node(x); ponext = arraypos->next; arraypos->next = p;return true;return false;刪除函數(shù)的實(shí)現(xiàn)template <class Type&g

7、t;bool openHashTable<Type>:remove(Type &x) int pos;node *p, *q;pos = key(x)%size; 計(jì)算相對(duì)應(yīng)的關(guān)鍵字 q = arraypos;p = q>n ext;while(p!=NULL&& >(p->data=x)q = p;p = p->next;if(p=NULL) return false; /沒有找至ljelseq->next = p->next; /找至 lj 后冊(cè) lj 除delete p;return true;查找函數(shù)的實(shí)現(xiàn)temp

8、late<class Typeint openHashTable<Type>:find(Type &x)int pos;node *p;pos = key(x)%size; 計(jì)算相對(duì)應(yīng)的關(guān)鍵字p = arraypos;while(p->next!=NULL && !(p->next->data=x) p = p->next;if(p->next!=NULL) return pos; /找到返回相應(yīng)的桶位else return 0; /沒到找到就返回0打印詞典函數(shù)的實(shí)現(xiàn)template<class Type>vo

9、id openHashTable<Type>:output()node *p;for(int i=0; i<size; +i)if (arrayi->next!=NULL)p=arrayi>n ext;if(i<10) cout« “ 00" «i « “”;/輸出單詞的桶位 if(i>10&&i<100) cout « " 0H «i « Hwhile(p!=NULL) 打印同一桶位,即有沖突的單詞cout« p->data; if(

10、p->next!=NULL) cout« "-> if(p>next=NULL) cout « endl; p = p>n ext;二.Main函教的實(shí)現(xiàn):文件名:openHashTableServesAs-A-DictionaryTest.cpp用散列表實(shí)現(xiàn)英文詞典#include "openHashTable.h”#include '"Word.h"#include <cstring>#include <iostream.h>int myHash(const Word &am

11、p;a); /求權(quán)重函數(shù)int power(int n); 求2的n次方函數(shù)void menu(); 打印菜單函數(shù)void main()Word w;char chioce;int n;bool flag=false;openHashTable<Word>dictionary(101,myHash); /定義一個(gè)名為 dictionary 的開散列表,即 作為詞典while(iflag)menu();cin >> chioce;switch(chioce)case 'i': cout« "請(qǐng)輸入單詞:"cin.igno re

12、(l/n);cin.getline(w.word,25);if(dictionary.insert(w) cout« "插入成功!" << endl; else cout« "這個(gè)單詞已存在!" « endl;break;case'd': cout« "請(qǐng)輸入單詞:";cin.igno re(l/n);cin.getline(w.word,25);if(dictionary.remove(w) cout« 11 刪除成功!" « endl

13、; else cout« "這個(gè)單詞不存在!" « endl;break;case 's': cout« "請(qǐng)輸入單詞:cin.igno re(l/n);cin .getli ne(w.word,25);n = dictionary.find(w);if(n!=0) cout« "已找到,單詞在第"<<n<< "桶中"<<endl;else cout« "這個(gè)單詞不存在!" « endl;bre

14、ak;case V: cout« "詞典如下所示:"« endl;dictio nary, output。;break;case 'q1: flag = true;break;default: cout« "輸入錯(cuò)誤!" « endl;break;求權(quán)重函數(shù)的實(shí)現(xiàn)int myHash(const Word &a)unsigned long int num=0;從a (A)到z (Z)的權(quán)重依次為0到26 for(int i=0; a.wordi!=,0,; +i)將單詞的從左到右分別乘上的2排位次方,如第四位乘2 的3次方 if(a.wordi>=,a,&&a.wordi<=,z,) num += (a.wordfi - 'O'-17 -32)*power(i); else num +=

溫馨提示

  • 1. 本站所有資源如無(wú)特殊說明,都需要本地電腦安裝OFFICE2007和PDF閱讀器。圖紙軟件為CAD,CAXA,PROE,UG,SolidWorks等.壓縮文件請(qǐng)下載最新的WinRAR軟件解壓。
  • 2. 本站的文檔不包含任何第三方提供的附件圖紙等,如果需要附件,請(qǐng)聯(lián)系上傳者。文件的所有權(quán)益歸上傳用戶所有。
  • 3. 本站RAR壓縮包中若帶圖紙,網(wǎng)頁(yè)內(nèi)容里面會(huì)有圖紙預(yù)覽,若沒有圖紙預(yù)覽就沒有圖紙。
  • 4. 未經(jīng)權(quán)益所有人同意不得將文件中的內(nèi)容挪作商業(yè)或盈利用途。
  • 5. 人人文庫(kù)網(wǎng)僅提供信息存儲(chǔ)空間,僅對(duì)用戶上傳內(nèi)容的表現(xiàn)方式做保護(hù)處理,對(duì)用戶上傳分享的文檔內(nèi)容本身不做任何修改或編輯,并不能對(duì)任何下載內(nèi)容負(fù)責(zé)。
  • 6. 下載文件中如有侵權(quán)或不適當(dāng)內(nèi)容,請(qǐng)與我們聯(lián)系,我們立即糾正。
  • 7. 本站不保證下載資源的準(zhǔn)確性、安全性和完整性, 同時(shí)也不承擔(dān)用戶因使用這些下載資源對(duì)自己和他人造成任何形式的傷害或損失。

評(píng)論

0/150

提交評(píng)論