C++英文词典的简单实现.doc

  1. 1、本文档共7页,可阅读全部内容。
  2. 2、有哪些信誉好的足球投注网站(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
  3. 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载
  4. 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
C英文词典的简单实现

用散列表实现简单的英文词典 2011年4月4日星期一 一.头文件: //文件名:Word.h //单词类的定义 #include cstring #include iostream.h class Word{ friend ostream operator(ostream os, const Word obj)//重载输出函数 { int n=strlen(obj.word); for(int i=0; in; ++i) os obj.word[i]; return os; } public: char word[25]; //用于存放单词 Word(){ for(int i=0; i25; ++i) word[i]=\0;} bool operator==(Word r)//重载判断相等符号 { if(strcmp(word,r.word)==0) return true; else return false; } void operator=(Word r) { strcpy(word,r.word); }//重载赋值运算符 }; //文件名:openHashTable.h //开散列表 #include cstring #include iostream.h template class Type class openHashTable{ private: struct node{//私有结点 Type data; struct node *next; node(){ next = NULL; } node(Type d){ data = d; next = NULL;} }; node **array; int(*key)(const Type x);//关键字 static int defaultKey(const int k) { return k; }//缺省值 int size; public: openHashTable(int length =101 , int(* f)(const Type x) = defaultKey); ~openHashTable(); int find(Type x); //查找函数 bool insert(Type x); //插入函数 bool remove( Type x); //删除函数 void output(); //输出词典函数 }; //======================开散列表函数的实现===================================== //构造函数的实现 template class Type openHashTableType::openHashTable(int length, int(*f)(const Type x)) { size = length; array = new node *[size]; key = f; for(int i=0; isize; ++i) array[i] = new node; } //析构函数的实现 template class Type openHashTableType::~openHashTable() { node *p, *q; for(int i=0; isize; ++i) { p = array[i];//分别析构每一个桶的相应链 do{ q = p-next; delete p; p = q; }while(p!=NULL); } delete [] array; } //插入函数的实现 template class Type bool openHashTableType::insert(Type x) { int pos; node *p; pos = key(x)%size; //计算相对应的关键字 p = array[pos]-next; while(p!=NULL !(p-data==x)) p = p-next; if(p==NULL) { p = new node(x); p-next = array[pos]-next; array[pos]-next = p; return true; } return false; } //删除函数的实现 template class Type bool openHashTableType::remove(Type x) { int pos; node *p, *q; pos = key(x)%size; //

文档评论(0)

yan698698 + 关注
实名认证
内容提供者

该用户很懒,什么也没介绍

1亿VIP精品文档

相关文档