版權(quán)說(shuō)明:本文檔由用戶提供并上傳,收益歸屬內(nèi)容提供方,若內(nèi)容存在侵權(quán),請(qǐng)進(jìn)行舉報(bào)或認(rèn)領(lǐng)
文檔簡(jiǎn)介
浙江大學(xué)2011–2012學(xué)年冬季學(xué)期《高級(jí)數(shù)據(jù)結(jié)構(gòu)與算法分析》課程期末考試試卷課程號(hào):__________,開(kāi)課學(xué)院:軟件學(xué)院、計(jì)算機(jī)學(xué)院、竺可楨學(xué)院考試試卷:√A卷、B卷(請(qǐng)?jiān)谶x定項(xiàng)上打√)考試形式:√閉、開(kāi)卷(請(qǐng)?jiān)谶x定項(xiàng)上打√),允許帶___無(wú)____入場(chǎng)考試日期:2011年1月12日,考試時(shí)間:120分鐘誠(chéng)信考試,沉著應(yīng)考,杜絕違紀(jì)。考生姓名:學(xué)號(hào):所屬院系:_題序一二三四總分得分評(píng)卷人AnswerSheetPartI(20)1.2.3.4.5.6.7.8.9(a).9(b).PartII(18)1.2.PartIII(47)1.2.(1)2.(2)3.(1)3.3,6,9(2)3,6,94.5.6.PartIV(15)
NOTE:Pleasewriteyouranswersontheanswersheet.注意:請(qǐng)將答案填寫(xiě)在答題紙上。Pleasefillintheblanks(theanswerforeachblankisunique).(2pointseach)1.For
an
AVL
tree,
______
is
NOT
correct.a.
A
complete
binary
search
tree
must
be
an
AVL
treeb.
If
the
height
of
an
empty
tree
is
defined
to
be
-1,an
AVL
tree
of
height3
must
contain
exactly
7
nodesc.
In
an
AVL
tree,
the
height
of
the
left
and
right
subtrees
can
differ
by
at
most
1d.
The
left
and
right
subtrees
of
an
AVL
tree
are
also
AVL
trees2.A
B+
tree
of
order
3
with
11
numbers
has
at
most___nonleaf
nodes.a.
3 b.
5 c.
7 d.
83.Amongthefollowingstatements,______
is
true.a.
Therelationshipofskewheapstoleftistheapsisanalogoustotherelation
between
splay
trees
and
B
trees.b.
Forleftistheapsandskewheaps,theworst-caserunningtimeofasingle
insertion
are
both
O(N).c.
Withthesameoperations,theresultingskewheapisalwaysmorebalancedthantheleftist
heap.d.
None
of
the
above
is
true.4.Afterinsert1,2,3,…,14,15consequentiallyintoaninitiallyemptybinomialqueue,in
which
tree
of
this
binomial
queuethatthe
number
9
will
be?a.
B1
b.
B2
c.
B3
d.
undecidable5.Whichofthefollowingalgorithmsdoesn’tuseDivideandConquer?a.Quicksort b.Mergesort c.Bucketsort d.Binarysearch6.An
amortized
time
bound
is
_____.a.
strongerthan
average-case
time
boundb.
strongerthan
worst-case
time
boundc.
weakerthan
best-case
time
boundd.
Noneoftheabove7.WhichofthefollowingalgorithmsisNOTrelatedtothegreedyalgorithm?a.
Dijkstra
algorithm
to
find
a
shortest
path
of
a
graph.b.
Kruskal
algorithm
to
find
a
minimum
spanning
tree
of
a
weighted
graph.c.
The
algorithm
to
find
the
optimal
binary
search
tree
forstaticsearch.d.
Huffman’s
codingof
a
list
of
characters
with
given
frequencies.8.Theturnpikereconstructionproblemistoconstructapointsetfromagivensetofdistances.LetD
={1,2,2,3,3,3,5,5,6,8}bethegivensetofdistances.Assumethatthefirstpointx1
=
0.Thenthenumberofpointsandthethirdsmallestpointmaybe
_______.a.
5
and
3 b.
5
and
6 c.
10
and
3 9.Forthefollowingproblems,(a)___
isundecidableand
(b)____isNP-complete.a.
Euler
circuit
problem b.
Halting
problemc.
All-pairs
shortest
paths
problem d.
All-pairs
longest
paths
problemGiventhefunctiondescriptionsofthefollowingtwo(pseudo-code)programs,pleasefillintheblanklines.(18points)1.Thefunction
is
to
find
X
in
a
binomial
queue
H.(9points)BinTree
Find(BinQueue
H,
ElementType
X)/*
To
find
whether
X
is
in
H.
Return
the
node
pointeriffound,
otherwise
return
NULL
*/{ BinTree
T,
result=NULL;int
i,j;
for(i=0,
j=1;
j<=H->CurrentSize;
i++,①_______)
{
/*
for
each
tree
in
H
*/T=
H->TheTrees[i];if
(②____________){
/*
if
need
to
search
insidethistree
*/result=RecurFindInTree(T,
X)if
(result!=NULL)
return
result;}}}BinTree
RecurFindInTree(BinTree
T,
ElementType
X){
BinTree
result=NULL;if
(X==T->Element)
return
T;if
(T->LeftChild
!=NULL
&&
X>=T->LeftChild->Element){result=
RecurFindInTree(T->LeftChild,
X);if
(result!=Null)
return
result;}if
(=3\*GB3③__________________________________________________){result=
RecurFindInTree(T->NextSibling,
X);return
result;}}2.ThefunctionistodoasinglerotationbetweennodeK1anditsrightchildinanAVLtree.(9points)structAvlNode{ElementTypeElement;AvlTreeLeft;AvlTreeRight;intHeight;}TypedefstructAvlNode*Position;TypedefstructAvlNode*AvlTree;staticPositionSingleRotateWithRight(PositionK1){PositionK2;①______;②;=3\*GB3③________________________________;K1->Height=Max(Height(K1->Left),Height(K1->Right))+1;K2->Height=Max(Height(K2->Right),K1->Height)+1;returnK2;}Pleasewriteordrawyouranswersforthefollowingproblemsontheanswersheet.(47points)1.Given
the
keywords
and
searching
frequencies,
Pleasedrawtheoptimalbinarysearchtreein
order
to
minimize
theexpectedtotal
accesstime.(9points)keywordsforswitchdowhilefrequencies0.300.180.250.272.Pleasedrawtheresultsofinserting{42,26,8,70,102,56,2}into:(1)(5points)aninitiallyemptyAVLtree;and(2)(5points)aninitiallyemptysplaytree.(Tip:Drawingthetreesstepbystepmighthelpyougettingpartialcredits.)3,6,73,6,79,119:1919,283.Givena2-3treeasshowninthefigure.Please:(1)showtheresultofinserting4withsplittingstrategy;(3points)(2)showtheresultofdeleting19andthen7fromthetreeobtainedin(1).(3points)4.(1)PleasebrieflydescribetheDocumentdistributionarchitectureforindexconstructionandmaintenanceforfulltextsearchindistributedenvironments.(5points)(2)Pleaselisttheprosandconsofthisstrategy.(5points)5.Pleasedrawtheresultof
deletingtheminimumelementfromthegiven
溫馨提示
- 1. 本站所有資源如無(wú)特殊說(shuō)明,都需要本地電腦安裝OFFICE2007和PDF閱讀器。圖紙軟件為CAD,CAXA,PROE,UG,SolidWorks等.壓縮文件請(qǐng)下載最新的WinRAR軟件解壓。
- 2. 本站的文檔不包含任何第三方提供的附件圖紙等,如果需要附件,請(qǐng)聯(lián)系上傳者。文件的所有權(quán)益歸上傳用戶所有。
- 3. 本站RAR壓縮包中若帶圖紙,網(wǎng)頁(yè)內(nèi)容里面會(huì)有圖紙預(yù)覽,若沒(méi)有圖紙預(yù)覽就沒(méi)有圖紙。
- 4. 未經(jīng)權(quán)益所有人同意不得將文件中的內(nèi)容挪作商業(yè)或盈利用途。
- 5. 人人文庫(kù)網(wǎng)僅提供信息存儲(chǔ)空間,僅對(duì)用戶上傳內(nèi)容的表現(xiàn)方式做保護(hù)處理,對(duì)用戶上傳分享的文檔內(nèi)容本身不做任何修改或編輯,并不能對(duì)任何下載內(nèi)容負(fù)責(zé)。
- 6. 下載文件中如有侵權(quán)或不適當(dāng)內(nèi)容,請(qǐng)與我們聯(lián)系,我們立即糾正。
- 7. 本站不保證下載資源的準(zhǔn)確性、安全性和完整性, 同時(shí)也不承擔(dān)用戶因使用這些下載資源對(duì)自己和他人造成任何形式的傷害或損失。
最新文檔
- 二零二四年度智能家居系統(tǒng)安裝合同
- 2024年食堂餐飲品牌代理合同3篇
- 福建省南平市五夫中學(xué)高三物理月考試卷含解析
- 11 變廢為寶有妙招 ( 說(shuō)課稿)2024-2025學(xué)年統(tǒng)編版道德與法治四年級(jí)上冊(cè)
- 2024年電腦硬件及軟件購(gòu)買合同
- 領(lǐng)跑未來(lái)家居設(shè)計(jì)
- 科學(xué)知識(shí)解密
- 外包保潔合同(2篇)
- 揭秘農(nóng)業(yè)生態(tài)系統(tǒng)
- 2024年虛擬現(xiàn)實(shí)技術(shù)研發(fā)與應(yīng)用委托合同
- 《遙感原理與應(yīng)用》-課程教學(xué)大綱
- GB/T 44311-2024適老環(huán)境評(píng)估導(dǎo)則
- 板材加工轉(zhuǎn)讓協(xié)議書(shū)模板
- GB 44506-2024人民警察警徽
- 2024年海南省中考?xì)v史試題
- Siemens WinCC:WinCC趨勢(shì)圖與歷史數(shù)據(jù)技術(shù)教程.Tex.header
- CJT 288-2017 預(yù)制雙層不銹鋼煙道及煙囪
- 人教版八年級(jí)物理-第二章:聲現(xiàn)象復(fù)習(xí)完整課件
- 直播代運(yùn)營(yíng)服務(wù)合同范本版
- 2024年江蘇蘇州中考數(shù)學(xué)試卷及答案
- 2024云南大學(xué)滇池學(xué)院教師招聘考試筆試試題
評(píng)論
0/150
提交評(píng)論