首页
网站开发
桌面应用
管理软件
微信开发
App开发
嵌入式软件
工具软件
数据采集与分析
其他
首页
>
> 详细
辅导program编程设计、讲解Java,c/c++语言程序、Python程序辅导 辅导Web开发|辅导R语言程序
项目预算:
开发周期:
发布时间:
要求地区:
For your reference:
𝑎, 𝑏, 𝑐 are constants and 𝑎 ≥ 1, 𝑏 > 1, and 𝑐 > 0
𝑓(𝑛) = 𝑂(𝑞(𝑛)) for some polynomial function 𝑞(𝑛).
Let ℎ(𝑛) = 𝑛
log𝑏 𝑎
Case 1: If 𝑓(𝑛)
ℎ(𝑛)
= 𝑂(𝑛
−𝜖
) for some 𝜖 > 0 then 𝑇(𝑛) = 𝜃(ℎ(𝑛))
Case 2: If 𝑓(𝑛)
ℎ(𝑛)
= 𝜃(log𝑘 𝑛) for some 𝑘 ≥ 0 then 𝑇(𝑛) = 𝜃(ℎ(𝑛) log𝑘+1 𝑛)
Case 3: If 𝑓(𝑛)
ℎ(𝑛)
= Ω(𝑛
𝜖
) for some 𝜖 > 0 and if 𝑎𝑓 (
𝑛
𝑏
) ≤ 𝑐𝑓(𝑛) for some constant 𝑐 ∈ (0,1) and
sufficiently large n, then 𝑇(𝑛) = 𝜃(𝑓(𝑛))
Solve the following recurrence relations. You must use the Master Theorem, if appropriate. Show your work.
This algorithm provides a solution to that checks to see if there is a path from start to end in a graph. The nodes
are integers in the range [0..n). The edges of the graph are stored in the Boolean array adjacencyMatrix, which is
in scope for the method.
Add code to the algorithm below to make it efficient. (25 points)
Give the worst case running time of an efficient solution, using big-O notation. Make your bounds as tight as
possible. (5 points)
boolean[][] adjacencyMatrix = new boolean[n][n];
// return true iff there is a path from start to end
boolean isConnected(int start, int end) {
return isConnected(start, end, n-1 );
}
// return true iff there is a path from start to end via intermediate nodes [0..via]
boolean isConnected(int start, int end, int via ){
if (via == -1) return adjacencyMatrix[start][end];
boolean retVal = isConnected(start,end,via-1 ) ||
(isConnected(start,via,via-1 ) &&
isConnected(via,end,via-1 ));
return retVal;
}
For the following problem, define: (40 points)
a. a problem structure (as an English definition, as we have done in the lecture and the last assignment)
b. a recurrence relation that recursively defines the solution to the problem in terms of solutions to smaller
sub-problems (and includes base case definition(s))
A three-smooth number is a number of the form 2
𝑖3
𝑗
for integers 𝑖,𝑗 ≥ 0. The sequence 1, 2, 3, 4, 6, 8, 9, 12, 16,
18, 24, 27, 32, 36, 48, 54, 64, 72, 81, and 96 shows the first 20 three-smooth numbers.
Determine if a positive integer k is three-smooth.
True False Puzzles (6 points each). Explain your reasoning.
True False A decision problem is decidable if it is possible to construct a Turing machine that, for all valid
input, will halt in a finite amount of time and produce the correct output.
Explanation:
True False It is possible to construct a correct algorithm that takes as input another program and
determines whether the program will output an even number for a given input.
Explanation:
True False If the Travelling Salesman Decision Problem can be solved in polynomial time, then the 0-1
Knapsack Decision Problem can be solved in polynomial time.
Explanation:
True False If the 0-1 Knapsack Decision Problem can be solved in polynomial time, then the Travelling
Salesman Decision Problem can be solved in polynomial time.
Explanation:
True False An efficient heap creation algorithm can create a max heap of integers from an array in O(n) time
in the worst case.
Explanation:
True False An efficient approach to finding the median value in an unsorted array will take O(n) time in the
average case.
Explanation:
True False Meta-heuristic optimization approaches, including local search, provide guarantees about the
quality of their solutions.
Explanation:
True False If a problem is NP-hard, it is undecidable.
Explanation:
Suppose that an exhaustive search algorithm considers all subsets of elements of an array of n elements. Provide a
tight (lower) bound for the running time of the algorithm using asymptotic notation. (4 points)
Suppose that an exhaustive search algorithm considers all permutations of an array of n elements. Provide a tight
(lower) bound for the running time of the algorithm using asymptotic notation. (4 points)
Suppose that you had 1 million 8-bit integers, which sorting algorithm would be fastest? (4 points)
Suppose that you had 1 million 32-bit integers, with 10 inversions, which sorting algorithm would be fastest? (4
points)
(12 points) Consider the digraph to the right. In
valid topological sorts of the graph:
- Which vertices can appear first in the
sort?
- Which vertices can appear second in the
sort?
- Which vertices can appear second-to-last in the sort?
- Which vertices can appear last in the sort?
Consider the following weighted, directed graph. The nodes listed in an order produced by one of the algorithms
that we studied. Identify the algorithm. (5 points each)
Notes:
For Dijkstra’s algorithm, TSP algorithm, Floyd-Warshall algorithm, and Prim’s algorithm, assume that the input
graph is the undirected graph produced by ignoring edge directions.
Write “None of the above” if none of the description match.
a) Bottom-Up Floyd-Warshall algorithm (order in which intermediate nodes are considered)
b) Breadth-first search (order in which nodes are visited starting at node 0, and we add neighbors of a node
to the queue in numerical order)
c) Depth-first search (order in which nodes are visited starting at node 0, and the neighbors of a node are
considered in numerical order)
d) Dijkstra’s algorithm (order in which destination nodes have their shortest paths calculated, with 0 as the
starting node.)
e) Prim’s Algorithm, starting at node 0, order in which a node is added to the tree
f) A list of the order in which nodes could be visited in the optimal Travelling Salesman Problem (TSP) tour
g) Topological sort
软件开发、广告设计客服
QQ:99515681
邮箱:99515681@qq.com
工作时间:8:00-23:00
微信:codinghelp
热点项目
更多
代做ceng0013 design of a pro...
2024-11-13
代做mech4880 refrigeration a...
2024-11-13
代做mcd1350: media studies a...
2024-11-13
代写fint b338f (autumn 2024)...
2024-11-13
代做engd3000 design of tunab...
2024-11-13
代做n1611 financial economet...
2024-11-13
代做econ 2331: economic and ...
2024-11-13
代做cs770/870 assignment 8代...
2024-11-13
代写amath 481/581 autumn qua...
2024-11-13
代做ccc8013 the process of s...
2024-11-13
代写csit040 – modern comput...
2024-11-13
代写econ 2070: introduc2on t...
2024-11-13
代写cct260, project 2 person...
2024-11-13
热点标签
mktg2509
csci 2600
38170
lng302
csse3010
phas3226
77938
arch1162
engn4536/engn6536
acx5903
comp151101
phl245
cse12
comp9312
stat3016/6016
phas0038
comp2140
6qqmb312
xjco3011
rest0005
ematm0051
5qqmn219
lubs5062m
eee8155
cege0100
eap033
artd1109
mat246
etc3430
ecmm462
mis102
inft6800
ddes9903
comp6521
comp9517
comp3331/9331
comp4337
comp6008
comp9414
bu.231.790.81
man00150m
csb352h
math1041
eengm4100
isys1002
08
6057cem
mktg3504
mthm036
mtrx1701
mth3241
eeee3086
cmp-7038b
cmp-7000a
ints4010
econ2151
infs5710
fins5516
fin3309
fins5510
gsoe9340
math2007
math2036
soee5010
mark3088
infs3605
elec9714
comp2271
ma214
comp2211
infs3604
600426
sit254
acct3091
bbt405
msin0116
com107/com113
mark5826
sit120
comp9021
eco2101
eeen40700
cs253
ece3114
ecmm447
chns3000
math377
itd102
comp9444
comp(2041|9044)
econ0060
econ7230
mgt001371
ecs-323
cs6250
mgdi60012
mdia2012
comm221001
comm5000
ma1008
engl642
econ241
com333
math367
mis201
nbs-7041x
meek16104
econ2003
comm1190
mbas902
comp-1027
dpst1091
comp7315
eppd1033
m06
ee3025
msci231
bb113/bbs1063
fc709
comp3425
comp9417
econ42915
cb9101
math1102e
chme0017
fc307
mkt60104
5522usst
litr1-uc6201.200
ee1102
cosc2803
math39512
omp9727
int2067/int5051
bsb151
mgt253
fc021
babs2202
mis2002s
phya21
18-213
cege0012
mdia1002
math38032
mech5125
07
cisc102
mgx3110
cs240
11175
fin3020s
eco3420
ictten622
comp9727
cpt111
de114102d
mgm320h5s
bafi1019
math21112
efim20036
mn-3503
fins5568
110.807
bcpm000028
info6030
bma0092
bcpm0054
math20212
ce335
cs365
cenv6141
ftec5580
math2010
ec3450
comm1170
ecmt1010
csci-ua.0480-003
econ12-200
ib3960
ectb60h3f
cs247—assignment
tk3163
ics3u
ib3j80
comp20008
comp9334
eppd1063
acct2343
cct109
isys1055/3412
math350-real
math2014
eec180
stat141b
econ2101
msinm014/msing014/msing014b
fit2004
comp643
bu1002
cm2030
联系我们
- QQ: 9951568
© 2021
www.rj363.com
软件定制开发网!