- 1、本文档共3页,可阅读全部内容。
- 2、原创力文档(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
- 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
PAGE1
程序设计经典教案
程序设计经典教案
第8章跳表和散列表
程序8.7散列表类
templateclassT
classHashTable:publicDynamicSetT
{
public:
HashTable(intdivisor=11);
~HashTable(){delete[]ht;delete[]empty;}
ResultCodeSearch(Tx)const;
ResultCodeInsert(Tx);
ResultCodeRemove(Tx);
private:
ResultCodeFind(Tx,intpos)const;
intM;
T*ht;
bool*empty;
};
templateclassT
HashTableT::HashTable(intdivitor)
{
M=divitor
;
ht=newT[M];empty=newbool[M];
for(inti=0;iM;i++)empty[i]=true;
for(i=0;iM;i++)ht[i]=NeverUsed;
}
程序8.8线性探查散列表的搜索
templateclassT
ResultCodeHashTableT::Find(Tx,intpos)const
{
pos=h(x);设h为散列函数,0h(x)M
inti=pos,j=-1;
do{
if(ht[pos]==NeverUsedj==-1)j=pos;记录首次遇到空值的位置
if(empty[pos])break;表中没有与x有相同关键字的元素
if(ht[pos]==x){ht[pos]的关键字值与x的关键字值相同
x=ht[pos];returnSuccess;将元素ht[pos]整体赋值给x,搜索成功
}
pos=(pos+1)%M;
}while(pos!=i);已搜索完整个散列表
if(j==-1)returnOverflow;表已满
pos=j;returnNotPresent;设置首次遇到的空值位置,并返回
}
templateclassT
ResultCodeHashTableT::Search(Tx)const
{
intpos;
if(Find(x,pos)==Success)returnSuccess;
returnNotPresent;
}
程序8.9线性探查散列表的插入
templateclassT
ResultCodeHashTableT::Insert(Tx)
{
intpos;
ResultCoderesult=Find(x,pos);
if(result==NotPresent){如果原表未满且表中不包含重复元素
ht[pos]=x;empty[pos]=false;将新元素插入首遇的空值处
returnSuccess;
}
if(result==Success)returnDuplicate;指示原表中存在重复元素
returnOverflow;指示原表已满
}
程序8.10线性探查散列表的删除
templateclassT
ResultCodeHashTableT::Remove(Tx)
{
intpos;
if(Find(x,pos)==Success){
ht[pos]=NeverUsed;returnSuccess;
}
returnNotPresent;
}
文档评论(0)