CS240留学生代做、algorithm代写、代写Java,Python,c++程序设计帮做SPSS|帮做C/C++编程

University of Waterloo
CS240 Winter 2020
Final Assessment, revised April 10, 2020
Due Date: Saturday, April 18 at 5:00pm EST
The preferred method is to submit your written solutions for each
problem separately in files FAq1.pdf, FAq2.pdf,...,FAq14.pdf. Alternatively, you can submit
written solutions in one PDF file with name FA.pdf using MarkUs. After submission, please
check that you have submitted correct files on MarkUs. We highly recommend that you
submit your solutions well ahead of the official deadline. No late solutions will be accepted.
Note: questions 1(a), 5(a), 7, 10(a) have been clarified. Example in question 3 has been
corrected.
Problem 1 Short answers [30 marks]
For each of the following questions, only a brief explanation is required. Each question is
worth 2 marks.
a) If we use 2-4 trees to implement buckets in hashing with separate chaining, then what
is the worst case time complexity of insertion, in terms of Θ()? Assume hash table
stores n items.
b) Professor X claims that he has invented an algorithm that can construct a binary
search tree from an unsorted array of size n storing keys by performing O(n log log n)
comparisons. Explain why the algorithm of Professor X must be incorrect.
c) Suppose the alphabet is Σ = {c0, c1, ..., cn−1} and text is T = c0c0c1c1...cn−1cn−1. What
is the height of the suffix tree?
d) Let S be a set of two dimensional points. Can the height of the quadtree for S be
smaller than the height of the kd-tree for S?
e) Consider a string S of length n = rs, consisting of a block of r zeros, followed by a
block of r ones, followed by a block of r zeros, etc (with s blocks of length r in total).
We apply run-length encoding to S. What is the length of the string we obtain?
f) Consider a universe U = {0, 1, 11, 12, 22, 23, ..., 11t, 11t+1} for some integer t, and hash
function h(k) = k mod 11. Suppose we use an array of size 11 for a hash dictionary.
Does h satisfy the uniform hashing assumption?
g) What is the smallest number of KVP in a B-tree of order 6 and height 7?
1
h) A character c occurs 51% of the time in a string S. In a Huffman encoding of S built
using the frequencies of characters, what is the number of bits in the encoding of c?
i) What is the maximum height of a compressed trie storing n strings?
j) What is the shortest string that will cause ‘the’ to be added to the LZW dictionary?
k) What is the largest number of auxiliary trees of size 1 in a 2-d range tree on n points?
l) Consider the Boyer-Moore string matching algorithm. In terms of n (text length) and
m (pattern length), give the best-case running time if the pattern is not in the text.
Ignore the preprocessing time.
m) Give the run-length encoding for S = 01000.
n) Give the run-length decoding for C = 0010101100110.
o) Suppose that algorithms A and B both solve some specified problem. If algorithm A
has complexity Θ(n2) and algorithm B has complexity Θ(n3), can we conclude that
algorithm B requires more time than algorithm A for any input instance?
Problem 2 [4 marks]
What is the running time of the following pseudocode segment? Give a Θ( ) expression, in
terms of n. Justify the time complexity.
1. p ← 1
2. for i ← 1 to n
3. p ← p ∗ n
4. j ← p
5. while j ≥ n
6. j ← j
2
Problem 3 [6 marks]
Design an algorithm that takes as an input array A of size n and an integer 0 < k < n.
A stores distinct real numbers. Your algorithm should put the k smallest elements of A
in the beginning in sorted order. For example, if A = {5, 1, 2, 7, 9, 3, 6} and k = 3, then
A = {1, 2, 3, 5, 7, 9, 6} is a valid output. Note that the first three elements of A must be 1, 2, 3,
but the rest of elements in A can be in arbitrary order. The worst case time complexity of
your algorithm must be O(n log k) and your algorithm must use O(k) additional space.
2
Problem 4 [4+4=8 marks]
Suppose we have a set of 2D points in general position. Consider a variant of kd-tree where
we always split points by a vertical line, i.e. based on the x coordinate. No splits by
horizontal line are allowed. As in the standard kd-tree, we always split points as equally as
possible based on the median x coordinate. The algorithm for search and range search is
the same.
a) What is worst case time complexity of search for a single point? Express your complexity
as a function of n, the number of points in the modified kd-tree.
b) What is worst case time complexity of range search? Express your complexity as a
function of n, the number of points in the modified kd-tree and s, the number of items
returned by the range search.
Problem 5 [2+2+2=6 marks]
a) Apply Rabin-Karp algorithm with hash function h(k) = k mod 7, pattern P = 22, and
text T = 156492936. List all the collisions. Collision is defined as usual in hashing:
two unequal strings have the same hash code.
b) Compute KMP failure array for P = cacacca.
c) Compute Suffix Skip array for P = abbnabbcabb.
Problem 6 [8 marks]
Design a data structure that stores KVP, and keys can be repeated. The data structure can
perform the following operations:
• insert(KVP x): inserts a KVP x into the data structure
• deleteMax(): removes and returns a KVP with the largest key from the data structure
• maxCount(): returns the number of KVP in the data structure that have key equal to
the largest key in the data structure.
The worst case complexity of insert and deleteMax have to be O(log n), where n is the
number of KVP in the data structure. Worst case complexity of maxCount() has to be
O(1). The required space for your data structure must be O(n).
Problem 7 [2+2+2=6 marks]
Consider the following AVL-tree. Assume keys are non-repeating positive integers not larger
than 100.
a) Give the largest key that can be inserted into the AVL tree above that results in no
rotations. If no such key exists write “no key”
b) Give the smallest key that can be inserted into the AVL tree above that results in a
double rotation (right or left). If no such key exists write “no key”
c) How many non-root nodes in the AVL tree above, when deleted, result in a rotation?
List the keys of these nodes.
Problem 8 [6 marks]
Consider a variation of a skip list which has fixed height h = 3 even though n can become
arbitrarily large. S0 stores all the keys, S3 stores only the sentinels. S1 can store any subset
of the keys in S0, and S2 can store any subset of the keys in S1. The data structure is static,
i.e. only searches are performed. Give the worst-case cost of searching in the skip list if the
subset of keys in level S1 and S2 is chosen optimally. Here, ’optimally’ means that the worst
case time complexity of search is the best possible.
Problem 9 [4 marks]
Suppose the alphabet is Σ = {a, b, c}. Give a string of length 10 composed for which LZW
compression is the worst possible. State the entries added to the dictionary.
Problem 10 [2+2+3=7 marks]
a) Computer the Burrows-Wheeler transform of the string ALAKAZAM$ using the endof-string
marker $.
b) String ENT T$MRIEAXE is the result of a Burrows-Wheeler transform. Compute
the original string.
c) Give an example of string of length 99 (length calculation does not include the symbol
$) containing only characters ‘a’,‘b’, ‘c’, s.t. in Burrows-Wheeler transform of this
sting, all letters ‘b’ are before all letters ‘c’, and letters ‘c’ are before all letters ‘a’.
4
Problem 11 [2+2 = 4 marks]
a) The following message was compressed using single character encoding and transmitted
together with its dictionary:
0010000111010101110001011010010
’ ’ = 100 (blank space)
Decode the message.
b) Explain why the encoding in part (a) was not obtained with the Huffman encoding.
Problem 12 [2+3=5 marks]
a) Draw the result of inserting ‘R’ in the following B-tree of order 5. Show intermediate
trees.
b) Draw the result of deleting ‘N’ from the following B-tree of order 5. Show intermediate
trees.
5
Problem 13 [3+4 = 7 marks]
When a mismatch occurs in the KMP algorithm at text position i and pattern position j,
neither the mismatched text character T[i] nor pattern character P[j] are considered when
shifting the pattern. In this question, you will modify KMP to make use of P[j] and T[i] when
shifting the pattern. You must not alter the fundamental principles of the KMP algorithm;
i.e. when the pattern is shifted, the prefix of the pattern that matches with the text T[k]
for k < i must not be rechecked.
a) Describe how to modify the KMP failure array and/or algorithm to make use of P[j].
State and briefly explain the runtime of the modified pre-processing step and algorithm
if they are different from KMP.
b) Describe how to modify the KMP failure array and/or algorithm to make use of T[i].
State and briefly explain the runtime of the modified pre-processing step and algorithm
if they are different from KMP. Consider the following two cases separately.
i) T[i] is not a character that occurs in the pattern.
ii) T[i] is a character that occurs in the pattern; i.e. when the pattern is shifted, the
prefix of the pattern that matches the text T[k] for k ≤ i must not be rechecked.
Problem 14 [6+4 = 10 marks]
You are given a text T of length n and an array P of patterns of size `. Each P[i], for
0 ≤ i < `, is a pattern, i.e. an array of characters, where:
• the length of P[k] is (k + 1)m for k ≥ 0
• P[k − 1] is a prefix of P[k] for all k > 0
You may assume m is much smaller than n.
a) State how to modify the Rabin-Karp algorithm so that it returns (i, k) where k is
maximal such that P[k] is found in T; i.e. P[k + 1] is not found in T. The returned i is
the position in the text where pattern P[k] is found. Your algorithm may use O(m`)
auxiliary space.
b) Suppose that P[k] is the largest pattern found in T; i.e. k should be left arbitrary.
Analyze the algorithm from part (a) and give the best case expected runtime and worst
case runtime. Explain how you derived the runtimes and show your work.
Note: The possible arguments for the runtime function include: n, m, ` and k. Depending
on your algorithm, they may not all be required.
 

热门主题

课程名

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
联系我们
EMail: 99515681@qq.com
QQ: 99515681
留学生作业帮-留学生的知心伴侣!
工作时间:08:00-21:00
python代写
微信客服:codinghelp
站长地图