软件工程算法课程第3章

软件工程算法课程第3章

ID:38445378

大小:1.31 MB

页数:79页

时间:2019-06-12

软件工程算法课程第3章_第1页
软件工程算法课程第3章_第2页
软件工程算法课程第3章_第3页
软件工程算法课程第3章_第4页
软件工程算法课程第3章_第5页
资源描述:

《软件工程算法课程第3章》由会员上传分享,免费在线阅读,更多相关内容在教育资源-天天文库

1、Chapter3List,Stacks,andQueueIntroducetheconceptofAbstractDataTypes(ADTS).showhowtoefficientlyperformoperationsonlists.IntroducethestackADTanditsuseinimplementingrecursion.IntroducethequeueADTanditsuseinoperatingsystemsandalgorithmdesign.3.1AbstractDataTypes(ADTS)ADT-----asetofobjectstogether

2、withasetofoperaions.Abstractdatatypesaremathematicalabstractions;nowhereinanADT’sdefinitionisthereanymentionofhowthesetofoperationsisimplemented.3.1AbstractDataTypes(ADTS)2.dataobject---asetofinstancesorvaluesforexample:Boolean={false,true}Digit={0,1,2,3,4,5,6,7,8,9}Letter={A,B,……Z,a,b,……z}N

3、aturalNumber={0,1,2,……}Integer={0,+1,-1,+2,-2,+3,-3,…}String={a,b,……,aa,ab,ac,……}3.1AbstractDataTypes(ADTS)3.datastructureisadataobjecttogetherwiththerelationshipsamongtheinstancesandamongtheindividualelementsthatcomposeaninstanceData_Structure={D,R}D---dataobject,R---asetofrelationshipsofal

4、lthedatamembersinD.3.2TheListADTL=(e1,e2,e3,…,en)listsizeisnifn=0:emptylistifn(finite)>0:e1isthefirstelementenisthelastelementeiprecedesei+13.2TheListADTExample:Students=(Jack,Jill,Abe,Henry,Mary,…,Judy)Exams=(exam1,exam2,exam3)DaysofWeek=(S,M,T,W,Th,F,Sa)Months=(Jan,Feb,Mar,Apr,…,Nov,Dec)3.

5、2TheListADTOperations:Createalinearlistdeterminewhetherthelistisemptydeterminethelengthofthelistfindthekthoftheelementsearchforagivenelementdeletethekthelementinsertanewelementjustafterthekth3.2TheListADTADTspecificationofalinearlistAbstractDateTypeLinearList{instancesorderedfinitecollection

6、sofzeroormoreelementsoperationsCreate();Destroy();IsEmpty();Length();Find(k,x);Search(x);Delete(k,x);Insert(k,x);Output(out);}3.2.1.SimpleArrayImplementationofLists1.Useanarraytorepresenttheinstanceofanobject(e1,e2,………en)e1e2e3enelement012n-1MaxSize-1length=neachpositionofthearrayiscalledace

7、lloranodemappingformula:location(i)=i-1O(1)3.2.1.SimpleArrayImplementationofListsClassdefinition:programtemplateclassLinearList{public:LinearList(intMaxListSize=10);~LinearList(){delete[]element;};boolIsEmpty()const{returnlength==0;}intLeng

当前文档最多预览五页,下载文档查看全文

此文档下载收益归作者所有

当前文档最多预览五页,下载文档查看全文
温馨提示:
1. 部分包含数学公式或PPT动画的文件,查看预览时可能会显示错乱或异常,文件下载后无此问题,请放心下载。
2. 本文档由用户上传,版权归属用户,天天文库负责整理代发布。如果您对本文档版权有争议请及时联系客服。
3. 下载前请仔细阅读文档内容,确认文档内容符合您的需求后进行下载,若出现内容与标题不符可向本站投诉处理。
4. 下载文档时可能由于网络波动等原因无法下载或下载错误,付费完成后未能成功下载的用户请联系客服处理。