




版權(quán)說明:本文檔由用戶提供并上傳,收益歸屬內(nèi)容提供方,若內(nèi)容存在侵權(quán),請進行舉報或認(rèn)領(lǐng)
文檔簡介
3Projects
3.1Project1:PerformanceMeasurement
GivenalistoforderedNintegers,numberedfrom0toN–1,checkingtoseethatNis
notinthislistprovidesaworstcaseformanysearchalgorithms.
Considertwoalgorithms:oneiscalled“sequentialsearch”whichscansthroughthelist
fromlefttoright;andtheotheris“binarysearch”whichisgivenonpage24(Figure2.9)of
yourtextbook.Yourtasksare:
(1)Implementaniterativeversionandarecursiveversionofsequentialsearch;
(2)Implementaniterativeversionofbinarysearch;
(3)Analyzetheworstcasecomplexitiesoftheabovetwoversionsofsequentialsearch
andthatofbinarysearch;
(4)Measureandcomparetheworstcaseperformancesoftheabovethreefunctionsfor
N=100,500,1000,2000,4000,6000,8000,10000.
Tomeasuretheperformanceofafunction,wemayuseC?sstandardlibrarytime.hasthe
following:
Note:Ifafunctionrunssoquicklythatittakeslessthanaticktofinish,wemayrepeatthe
functioncallsforKtimestoobtainatotalruntime(“TotalTime”),andthendividethetotaltime
byKtoobtainamoreaccurateduration(“Duration”)forasinglefunofthefunction.The
repetitionfactormustbylargeenoughsothatthenumberofelapsedticksisatleast10ifwe
wantanaccuracyofatleast10%.
Thetestresultsmustbelistedinthefollowingtable:
1
TheperformancesofthethreefunctionsmustbeplottedinthesameN-run_timecoordinate
systemforillustration.
2
3.2Project2:ImplementationofLists,andPolynomial
Problems
1.Mergetwoorderedlistsintoanewlinkedlistinwhichthenodesarealsoin
thisorder.Iflengthsoforiginaltwolistsaremandn,thelengthofnewlinked
listism+n.
Forexample:
Input:
5(lengthoflist1)
426465695
11(lengthoflist2)
1517263046485658829095
Output:
41517263046485658
829095
Demands:
(1).Youshouldusesinglelinkedlist(withaheader)tocreatethefunctionsMakeEmpty,
IsEmpty,IsLast,Find,Delete,FindPrevious,Insert,DeleteList,Header,First,Advance,
Retrieve(SeeP40,Figure3.6).
(2).Usingabovefunctionstosolvethisproblem.
(3).Thelinkedimplementationoflistshouldbewritteninseparatedfiles(.cppand.h)inthe
VC++workspace.Theirnamesshouldbelinkedlist.h,linkedlist.cpp,merge.cpp.
2.ThedeclarationsthatfollowgiveusthepolynomialADT.
StructurePolynomialis
e,awherea
Object:P(x)axe1axen;asetoforderedpairsof
is
1
n
i
i
i
thecoefficientande
istheexponent.arenonnegativeintegers.
e
i
i
Operations:
Forallpoly,poly1,poly2∈Polynomial,coef∈Coefficients,expon∈Exponents
PolynomialZero()
::=returnthepolynomial,P(x)=0
::=if(poly)returnFALSE;
elsereturnTRUE;
BooleanIsZero(poly)
CoefficientCoef(poly,expon)
::=if(expon∈poly)returnitscoeffient
3
elsereturnzero.
ExponentLead_Exp(poly)
::=returnthelargestexponentinpoly.
PolynomialAttach(poly,coef,expon)::=if(expon∈poly)returnerror
elsereturnthepolynomialpolywiththeterm
<coef,expon>inserted.
PolynomialRemove(poly,expon)
:=if(expon∈poly)returnthepolynomialpolywith
thetermwhoseexponentisexpondeleted
elsereturnerror.
PolynomialSingleMult(poly,coef,expon):=returnthepolynomialpoly*coef*xexpon
PolynomialAdd(poly1,poly2)
PolynomialMult(poly1,poly2)
endPolynomial
:=returnthepolynomialpoly1+poly2.
:=returnthepolynomialpoly1*poly2.
Demands:
(1).YoushouldchooseasuitablerepresentationforPolynomial.
(2).YoushouldcreatethefunctionsZero,IsZero,Coef,Lead_Exp,Attach,Remove,
SingleMult,Add,Mult,andtestthem.
(3).IfA(x)3x202x54andB(x)3x2x3x1,writeafunctiontouse
432
abovefunctionstocomputeC(x)A(x)B(x)andD(x)A(x)*B(x).
(4).Analyzeadvantagesofyourrepresentation.
(5).TheimplementationofpolynomialADTshouldbewritteninseparatedfiles(.cppand.h)
intheVC++workspace.TheirnamesshouldbePolynomial.h,Polynomial.cpp,
main.cpp.
Note:
Yourprogrammustreadfromafile“input.txt”andwritetoafile“output.txt”inthe
currentdirectory.
4
3.3Project3:ImplementationandApplicationsofStacks
Problems
1.WriteaConversionfunctiontoconverseanydecimaldatatobinaryversion.
Demands:
(1).ImplementStackADTusinglinkedlistrepresentation,whichmustatleasthasfivebasic
operations:Create,IsFull,Push,IsEmptyandPop.
(2).BuildanewprojecttoimplementtheConversionfunction.Theinputandoutputshouldbe
accordingtothefollowingformat:
Pleaseinputthedecimalnumber:15
Thecorrespondingbinaryversionis:1111
Pleaseinputthedecimalnumber:-1
Bye!
2.Writeaprogramtojudgewhetherabracketsequence(maybehasother
letters)is“matching”.The“matching”meansthatiftherehasa?(?ina
expressionandtheremusthasa?)?init.Iftheinputsequenceis“matching”,
thenoutput?ok?,otherwiseoutputE?RROR?.
Demands
(1).ImplementStackusingarrayrepresentation,whichmustatleasthasfivebasicoperations:
Create,IsFull,Push,IsEmptyandPop.
(2).BuildanewprojecttoimplementthebracketMatchingfunction.Theinputandoutput
shouldbeaccordingtothefollowingformat:
Pleaseinputtheexpression:a*(b+c)
ThebracketoftheexpressionismatchingOK!
Pleaseinputtheexpression:a*(b+c))
ThebracketoftheexpressionismatchingERROR!
Pleaseinputtheexpression:(a*(b+c)
ThebracketoftheexpressionismatchingERROR!
5
Note
ThetwoimplementationofStackshouldbewritteninseparatedfiles(.cppand.h)inthe
VC++workspace.Theirfilesshouldbenameddifferently,suchaslinkedStack.h,
linkedStack.cpp,SqStack.h,SqStack.cpp.
6
3.4Project4:BinaryTreeTraversals
1.Problem
Createbinarytreeasfollow(Figure-1)incomputer,writeoutthefunctionsofinorder,
preorder,postorderandlevelorder,andusethemtotraversalthebinarytree.Andcomputethe
leafnumberandheightofthebinarytree.
Hint:Youmaychoosesuitablerepresentation,suchaslinkedrepresentationisoftenused.
Figure-1abinarytree
2.Stepsandrestrictconditions
Step1.Writethefunctionofcreatetocreateatreebyinputdata.
Step2.Writerecursiveversionfunctionsofinorder,preorderandpostordertotraversalthe
tree.
Step3.SelectasuitablerepresentationtoimplementstackADT,whichmustatleasthasfive
basicoperations:Create,IsFull,Push,IsEmptyandPop.Theelementtypeinthe
stackispointerofnode.
Step4.ImplementQueueADTrepresentedbycircularqueue,whichhassevenbasic
operations:CreateQueue,IsEmpty,DisposeQueue,MakeEmpty,EnQueue,Front,
DeQueue.Theelementtypeinthequeueispointerofnode.
Step5.Writeaniterativeversionofinorder,thenameisiter_inorder()toinordertraversaltree.
Step6.Writeafunctionforlevelordertraversalofbinarytree,thenameislevel_order.
Step7.Writeafunctiontocomputetheleafnumberofthebinarytree,thenameisleaf.
Step8.Writeafunctiontocomputetheheightofthebinarytree,thenameisheight.
7
3.5Project5:JumpingtheQueue:anACMProblem
ThebeginningofawinterbreaknearSpringFestivalisalwaysthebeginning
ofapeakperiodoftransportation.Ifyouhaveevertriedtogetatrainticketatthat
time,youmusthavewitnessedtheendlessqueuesinfrontofeveryticketbox
window.Ifaguyhasseenhisfriendinaqueue,thenitisverymuchlikelythatthis
luckyguymightgostraighttohisfriendandaskforafavor.Thisiscalled"jumping
thequeue".Itisunfairtotherestofthepeopleintheline,but,itislife.Yourtaskis
towriteaprogramthatsimulatessuchaqueuewithpeoplejumpingineverynow
andthen,assumethat,ifoneinthequeuehasseveralfriendsaskingforfavors,he
wouldarrangetheirrequestsinaqueueofhisown.
InputSpecification:
Yourprogrammustreadtestcasesfromafile“input.txt”.Theinputfilewill
containoneormoretestcases.Eachtestcasebeginswiththenumberofgroupsn
(1<=n<=100).Thenngroupdescriptionsfollow,eachoneconsistingofthe
numberoffriendsbelongingtothegroupandthosepeople'sdistinctnames.Agroup
isafriendgroup.Peopleinonegrouparefriendwitheachother.Anameisastring
ofupto4characterschosenfrom{A,B,...,Z,a,b,...,z}.Agroupmayconsistof
upto1000friends.Youmayassumethatthereisnoonebelongtotwodifferent
groups.
Finally,alistofcommandsfollows.Therearethreedifferentkindsof
commands:
ENQUEUEX-Mr.orMs.Xgoesintothequeue
DEQUEUE-thefirstpersongetstheticketandleavethequeue
STOP-endoftestcase
Theinputwillbeterminatedbyavalueof0forn.
OutputSpecification:
Outputallresultstoafile“output.txt”.Foreachtestcase,firstprintaline
saying"Scenario#k",wherekisthenumberofthetestcase.Then,foreach
DEQUEUEcommand,printthepersonwhojustgetsaticketonasingleline.Print
ablanklinebetweentwotestcases,butnoextralineattheendofoutput.
SampleInput:
2
3AnnBobJoe
3ZoeJimFat
ENQUEUEAnn
ENQUEUEZoe
ENQUEUEBob
ENQUEUEJim
ENQUEUEJoe
8
ENQUEUEFat
DEQUEUE
DEQUEUE
DEQUEUE
DEQUEUE
DEQUEUE
DEQUEUE
STOP
2
5AnnyJackJeanBillJane
6EvaMikeRonSonyGeoZoro
ENQUEUEAnny
ENQUEUEEva
ENQUEUEJack
ENQUEUEJean
ENQUEUEBill
ENQUEUEJane
DEQUEUE
DEQUEUE
ENQUEUEMike
ENQUEUERon
DEQUEUE
DEQUEUE
DEQUEUE
DEQUEUE
STOP
0
SampleOutput:
Scenario#1
Ann
Bob
Joe
Zoe
Jim
Fat
Scenario#2
Anny
Jack
Jean
Bill
Jane
Eva
9
3.6Project6:PerformancesMeasurementofSortingAlgorithms
1.Problems
(1).SortthelistbyInsertionSort,ShellSort,QuickSort,MergeSortandHeapSort,
respectively.Andoutputeverypassresultofthem.
Input:(alist)
265371611159154819
Output:theeverypassresultofthem.
Notes:youshouldprinttheoriginallist,everypassresultandthelastresults.
(2).MeasureperformancesofInsertionSort,ShellSort,QuickSort,MergeSort
andHeapSortforrandomdata.
2.Stepsandrestrictconditions
(1).ImplementfunctionsofInsertionSort,ShellSort,QuickSort,MergeSortandHeapSort.
(2).OutputeverypassresultofinputlistL={265371611159154819}by
executethesefunctions.
(3).Analyzetheworstcasecomplexitiesofallabovealgorithms;
(4).MeasureperformancesoftheabovefunctionsforN=100,500,1000,2000,4000,5000,
10000,20000.
Youmayuserandomlibraryfunctiontocreatethetestingdatafirstly.Second,sortitusing
abovealgorithmsalternately.Finally,measuretheirperformances.
Togeneratealistrandomdata,wemayuseC?sstandardlibrarystdlib.hasthefollowing:
3.7Project7:TraversalsandApplicationsofGraph
1.Problem
Givenadirectedgraph(seeFigure2),usetheadjacencylistmethodtorepresentit,and
outputthesequenceofvertexnamesgettingfromDepth-FirstSearchandBreadth-First
Search.AndGivenasourcev0,Determineashortestpathtoeachv∈V(G)\{v0}andoutput
them.
2.InputandOutputDemand
Input:thenumberofvertex,thenumberofedge,alledges(Vi,Vj)anditsweightinagraph.
Output:
(1).printthegraph.
(2).printthesequenceofvertexnamesgettingfromDepth-FirstSearch.
(3).printthesequenceofvertexnamesgettingfromBreadth-FirstSearch.
Forexample(SeeFigure1):
Input:
611
//indicatethegraphincludingsixvertexesandelevenedges.
//indicateanedgefromV0toV1.
0150
0210
0445
1215
1410
2020
2315
3120
3435
4330
533
Figure2
Output:
0:124
1:24
2:03
3:14
4:3
5:3
ThesequenceofvertexnamesgettingfromDepth-FirstSearch(from?V1?):
11
V1V2V0V4V3V5
ThesequenceofvertexnamesgettingfromBreadth-FirstSearch(from?V1?):
V1V2V4V0V3V5
Shortestpathsfromv0toeachvertexare
V0toV145
V0toV210
V0toV325
V0toV445
V0toV51000
(“1000”meansnopath.)
3.Stepsandrestrictconditions:
Step1.ImplementDepth-FirstSearchAlgorithm;
Step2.ImplementQueueADTrepresentedbycircularqueue,whichhassevenbasicoperations:
CreateQueue,IsEmpty,DisposeQueue,MakeEmpty,EnQueue,Front,DeQueue.The
elementtypeispointerofnode;
Step3.ImplementBreadth-FirstSearchAlgorithm;
Step4.Writeafunctiontodetermineashortestpathfromvitoeachv∈V(G)\{vi}.
Note:
Yourprogrammustreadfromafile“input.txt”andwritetoafile“output.txt”inthe
currentdirectory.
12
4MinimumRequirementsonWritingaProjectReport
TitleofProject
Class
GroupID
DateofCompletionmm-dd-yy
1.Introduction
Problemdescriptionand(ifany)backgroundofthealogithms.
2.AlgorithmSpecification
Description(pseudo-codepreferred)ofallthealgorithmsinvolvedforsolvingtheproblem,
includingspecificationsofmaindatastructures.
3.TestingResults
Tableoftestcases.Eachtestcaseusuallyconsistsofabriefdescriptionoft
溫馨提示
- 1. 本站所有資源如無特殊說明,都需要本地電腦安裝OFFICE2007和PDF閱讀器。圖紙軟件為CAD,CAXA,PROE,UG,SolidWorks等.壓縮文件請下載最新的WinRAR軟件解壓。
- 2. 本站的文檔不包含任何第三方提供的附件圖紙等,如果需要附件,請聯(lián)系上傳者。文件的所有權(quán)益歸上傳用戶所有。
- 3. 本站RAR壓縮包中若帶圖紙,網(wǎng)頁內(nèi)容里面會有圖紙預(yù)覽,若沒有圖紙預(yù)覽就沒有圖紙。
- 4. 未經(jīng)權(quán)益所有人同意不得將文件中的內(nèi)容挪作商業(yè)或盈利用途。
- 5. 人人文庫網(wǎng)僅提供信息存儲空間,僅對用戶上傳內(nèi)容的表現(xiàn)方式做保護處理,對用戶上傳分享的文檔內(nèi)容本身不做任何修改或編輯,并不能對任何下載內(nèi)容負(fù)責(zé)。
- 6. 下載文件中如有侵權(quán)或不適當(dāng)內(nèi)容,請與我們聯(lián)系,我們立即糾正。
- 7. 本站不保證下載資源的準(zhǔn)確性、安全性和完整性, 同時也不承擔(dān)用戶因使用這些下載資源對自己和他人造成任何形式的傷害或損失。
最新文檔
- 黃河上游白土莊剖面沉積序列及13ka BP泥流事件
- 餐廳服務(wù)員勞動合同范本
- 空氣質(zhì)量監(jiān)測員合同
- 教育行業(yè)經(jīng)紀(jì)服務(wù)合同
- 車庫租賃合同
- 鋼筋采購合同樣本與鋼筋采購合同
- 房屋地基確權(quán)協(xié)議書
- 弱電落地施工協(xié)議書
- 房屋粉刷合同協(xié)議書
- 拆除門框合同協(xié)議書
- 仿古建筑工程施工合同
- 北師大版數(shù)學(xué)四年級下冊簡易方程練習(xí)200題及答案
- 海洋牧場漁業(yè)資源采捕規(guī)范
- 恐動癥品管圈課件
- 電商平臺對用戶交易糾紛的處理和解決方案
- 森林生態(tài)修復(fù)技術(shù)方案
- 研發(fā)部門發(fā)展規(guī)劃書
- 嬰幼兒托育服務(wù)與管理專業(yè)人才需求調(diào)研報告
- 江蘇省四所百強中學(xué)2022-2023學(xué)年高二下學(xué)期6月聯(lián)考生物試題含答案
- 中國腦卒中康復(fù)治療指南課件
- 2022年全國外貿(mào)跟單員崗位專業(yè)考試外貿(mào)跟單基礎(chǔ)理論試卷A卷(含英語)
評論
0/150
提交評論