



下载本文档
版权说明:本文档由用户提供并上传,收益归属内容提供方,若内容存在侵权,请进行举报或认领
文档简介
(15Points)A.Canyougiveanexampleofaheapwithsevendistinctelementssuchthatapre-ordertraversaloftheheapyieldstheelementsinsortedorder?Ifnotwhy?
Answer:
1
2 5
3 467
B.Canyougiveanexampleofaheapwithsevendistinctelementssuchthatanin-ordertraversaloftheheapyieldstheelementsinsortedorder?Ifnotwhy?
Answer:
No.Inain-ordertraversalofatreerootedatnodev,theresultisv.leftChildren(maybeasub-tree),v,v.rightChildren(maybeasub-tree).Ifthetreeisaheap,becauseofHeap-OrderProperty,thereexistsomekey(s)inv.leftChildrengreaterthanthekeyofv,andthesituationisthesamewithv.rightChildren,sotheresultcannotbeinsortedorder.
C.Canyougiveanexampleofaheapwithsevendistinctelementssuchthatapost-ordertraversaloftheheapyieldstheelementsinsortedorder?Ifnotwhy?
Answer:
1
5 2
7 643
(15Points)ConsiderannbynmatrixMwhoseelementsare0’sand1’ssuchthatinanyrow,allthe1’scomebeforeany0’sinthatrow.AssumingAisalreadyinmemory,describeanalgorithmrunninginO(n)timeforfindingtherowofMthatcontainthemostof1’s.
Answer:
AlgorithmfindMaxRow()
i<-0
j<-0
maxCount<-0
maxRow<-0
whilei<n
whileM[i][j]=1
j<-j+1
if(j=n)
returni
ifj>maxCount
maxCount<-j
maxRow<-i
i<-i+1
returnmaxRow
(15Points)ConsiderthesamematrixMinquestion2.DescribeanalgorithmrunninginO(nlogn)forcountingthenumberof1’sinM.
Answer:
Algorithmcount()
i<-0
j<-0
s<-0
whilei<n
whileM[i][j]=1
j<-j+1
whileM[i][j-1]=0
j<-j-1
s<-s+j
returns
Notquite.Youshoulduseabinarysearchoneachrowtofindthelocationoftherightmost1.
(15Points)Wearegiventwon-elementsortedsequencesAandBthatshouldnotbeviewedassets(thatis,AandBmaycontainduplicateelements).DescribeanO(n)methodforcomputingasequencerepresentingthesetAUB(withnoduplicateelements).
Answer:
Assumethattheyaresortedinnon-decreasingorder.
Algorithmunion(A,B,S)
Input:sequenceAandBsortedinnon-decreasingorder,andenemptysequenceS
Output:S,AUB
S.insertLast(min{A.first().element(),B.first().element()})
while(not(A.isEmpty()orB.isEmpty()))
ifA.first().element()<=B.first().element()
ifS.last().element()=A.first().element()
A.remove(A.first())
else
S.insertLast(A.remove(A.first()))
else
ifS.last().element()=B.first().element()
B.remove(B.first())
else
S.insertLast(B.remove(B.first()))
while(notA.isEmpty())
ifS.last().element()=A.first().element()
A.remove(A.first())
else
S.insertLast(A.remove(A.first()))
while(notB.isEmpty())
ifS.last().element()=B.first().element()
B.remove(B.first())
else
S.insertLast(B.remove(B.first()))
(10Points)YouarebeinginterviewedtobehiredasacashierinaDollarStore.TheManagerasksyoutodevelopanefficientgreedyalgorithmformakingchangeforaspecifiedvalueundera$1usingaminimumnumberofcoinsofquarters,dimes,nickels,andpennies.Describeyouralgorithm.Youwillnotbehiredifyouralgorithmisnotgreedy!
Answer:
Algorithm
Input:x,theamountofmoneyintermsofcent
Output:Q,D,N,P------numberofeachunity
Q,D,N,P<-0
while(x>=25)
Q<-Q+1
x<-x-25
while(x>=10)
D<-D+1
x<-x-10
while(x>=5)
N<-N+1
x<-x-5
while(x>=1)
P<-P+1
x<-x-1
(15Points)Giventhestoryinquestion5,ifthedenominationswerenot$0.25,$0.10,$.05,and$0.01(butsomeotherdenominations),doyouthinkyourgreedyalgorithmstillworks?JustifyyouranswerwithsolidargumentsorexamplestobequalifiedforajobatUSTreasury.
Answer:
Yes,Ithinkso.
IftherearedenominationsofD0,D1,...,Dn,andthatD0<D1<...<Dn,D0mustbeafactorofx,namelyxmodD0=0.
SupposeweexpresstheamountofmoneyxinonlyD0,thentotalnumberisCount(D0)+Count(D1)+...+Count(Dn)=x/D0+0+...+0.
IfwetransfertheexpressionfromD0to(D0andDk)(k>0),thetotalnumberwilldecreasetox/Dk+y(y=(xmodDk)/D0).So,thefirstpartx/DkisdecreasingwithDkincreasing,whilethesecondpartyisasub-problemoftheoriginalproblemandwecansolveitwiththesameprinciple.
No,thisisincorrect.Imagineyouhadcoinswithdenominations1c,9c,10candhadtomakechangefor18c,thenthegreedyalgorithmwouldmakechangewitha10cand81ccoins,whilethebestsolutionis29ccoins.
(15Points)Designadivide-and-conqueralgorithmforfindingtheminimumandmaximumelementsofnnumbersusingnomorethan3n/2comparisons.
Answer:
pickarandomelementTargetrandomlyfromtheset
dividetheremainingelementsintotwosets
G:elementsthatgreaterthanTarget
S:elementsthatsmallerthanTarget
(throwawayelementsthatequaltoTarget)
ifGisNULL
Targetisthemaximumelement
ifSisNULL
Targetistheminimumelement
ifGisnotNULL
recursivelydo
pickarandomelementTargetfromtheremainingelements
throwawayelementsthatsmallerthanorequaltoTarget
isSisnotNULL
recursivelydo
pickarandomelementTargetfromtheremainingelements
throwawayelementsthatgreaterthanorequaltoTarget
Fromthesolutions,
Dividethesetofnnumbersn/2groupsoftwoele
温馨提示
- 1. 本站所有资源如无特殊说明,都需要本地电脑安装OFFICE2007和PDF阅读器。图纸软件为CAD,CAXA,PROE,UG,SolidWorks等.压缩文件请下载最新的WinRAR软件解压。
- 2. 本站的文档不包含任何第三方提供的附件图纸等,如果需要附件,请联系上传者。文件的所有权益归上传用户所有。
- 3. 本站RAR压缩包中若带图纸,网页内容里面会有图纸预览,若没有图纸预览就没有图纸。
- 4. 未经权益所有人同意不得将文件中的内容挪作商业或盈利用途。
- 5. 人人文库网仅提供信息存储空间,仅对用户上传内容的表现方式做保护处理,对用户上传分享的文档内容本身不做任何修改或编辑,并不能对任何下载内容负责。
- 6. 下载文件中如有侵权或不适当内容,请与我们联系,我们立即纠正。
- 7. 本站不保证下载资源的准确性、安全性和完整性, 同时也不承担用户因使用这些下载资源对自己和他人造成任何形式的伤害或损失。
最新文档
- 加强急诊科与其他科室的协调合作计划
- 怎制作朗读课件
- 2024年九年级化学上册 实验5《一定浓度溶液的配置》教学实录 (新版)湘教版
- 2025年应急救生系统合作协议书
- 六年级上册数学教案 - 第二单元分数乘法 苏教版
- 焦化员工检讨书
- 恋爱合同书(2025年版)
- 项目用水的回复函
- 2025年声学应答释放器项目合作计划书
- 2025年山东货运资格证科目四考题
- 合同协议公司员工聘用合同7篇
- 2025年安徽卫生健康职业学院单招职业适应性测试题库含答案
- 2025年安徽电子信息职业技术学院单招职业倾向性考试题库新版
- 2025年常州信息职业技术学院单招职业技能考试题库审定版
- 2025上海崇明现代农业园区开发限公司招聘39人易考易错模拟试题(共500题)试卷后附参考答案
- 4.1 人要有自信 (课件)2024-2025学年七年级道德与法治下册(统编版2024)
- 中国HEPA过滤器行业发展监测及发展战略规划报告
- 2024年江苏商贸职业学院高职单招职业适应性测试历年参考题库含答案解析
- 施工技术创新管理措施
- 2024版非ST段抬高型急性冠脉综合征诊断和治疗指南解读
- 医疗机构抗菌药物临床应用分级管理目录(2024年版)
评论
0/150
提交评论