网站大量收购闲置独家精品文档,联系QQ:2885784924

程序:第02章:线性表.docx

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

程序设计经典教案

程序设计经典教案

第2章线性表

程序2.1线性表类

#includeiostream.h

templateclassT

classLinearList

{

public:

virtualboolIsEmpty()const=0;

virtualintLength()const=0;

virtualboolFind(inti,Tx)const=0;

virtualintSearch(Tx)const=0;

virtualboolInsert(inti,Tx)=0;

virtualboolDelete(inti)=0;

virtualboolUpdate(inti,Tx)=0;

virtualvoidOutput(ostreamout)const=0;

protected:

intn;线性表的长度

};

程序2.2顺序表类

#includelinearlist.h

templateclassT

classSeqList:publicLinearListT

{

public:

SeqList(intmSize);

~SeqList(){Delete[]elements};

boolIsEmpty()const;

intLength()const;

boolFind(inti,Tx)const;

intSearch(Tx)const;

boolInsert(inti,Tx);

boolDelete(inti);

boolUpdate(inti,Tx);

voidOutput(ostreamout)const;

private:

intmaxLength;顺序表的最大长度

T*elements;动态一维数组的指针

};

templateclassT

SeqListT::SeqList(intmSize)

{

maxLength=mSize;

elements=newT[maxLength];动态分配顺序表的存储空间

n=0;

}

templateclassT

boolSeqListT::IsEmpty()const

{

returnn==0;

}

templateclassT

intSeqListT::Length()const

{

returnn;

}

templateclassT

boolSeqListT::Find(inti,Tx)const

{

if(i0||in-1){对i进行越界检查

coutOutofBoundsendl;returnfalse;

}

x=elements[i];通过引用参数x返回下标为i的元素

returntrue;

}

templateclassT

intSeqListT::Search(Tx)const

{

for(intj=0;jn;j++)

if(elements[j]==x)returnj;从头开始搜索值为x的元素

return-1;

}

templateclassT

boolSeqListT::Insert(inti,Tx)

{

if(i-1||in-1){

coutOutOfBoundsendl;returnfalse;

}

if(n==maxLength){上溢出检查

coutOverFlowendl;returnf

文档评论(0)

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

当代思想家、哲学家、批评家

1亿VIP精品文档

相关文档