COMP9024 21T3 Week 9 Set String Algorithms, Approximation
 COMP9024 21T3 Week 9  Set String Algorithms, Approximation
Week 9 Problem Set
1.(Boyer-Moore algorithm)
a.Implement a C-function
b.int *lastOccurrence(char *pattern, char *alphabet) { ... }
that computes the last-occurrence function for the Boyer-Moore algorithm. The function should return a newly created dynamic array indexed by the numeric codes of the characters in the given alphabet (a non-empty string of ASCII-characters).
Ensure that your function runs in O(m+s) time, where m is the size of the pattern and s the size of the alphabet.
Hint: You can obtain the numeric code of a  char c  through type conversion:  (int)c.
c.Use your answer to Exercise a. to write a C-program that:
prompts the user to input
an alphabet (a string),
a text (a string),
a pattern (a string);
computes and outputs the last-occurrence function for the pattern and alphabet;
uses the Boyer-Moore algorithm to match the pattern against the text.
An example of the program executing could be
./boyer-moore
Enter alphabet: abcd
Enter text: abacaabadcabacabaabb
Enter pattern: abacab
 
L[a] = 4
L[b] = 5
L[c] = 3
L[d] = -1
 
Match found at position 10.
If no match is found the output should be:  No match.
Hints:
You may assume that
the pattern and the alphabet have no more than 127 characters;
the text has no more than 1023 characters.
To scan stdin for a string with whitespace, such as "a pattern matching algorithm", you can use:
#define MAX_TEXT_LENGTH 1024
#define TEXT_FORMAT_STRING "%[^\n]%*c"
char T[MAX_TEXT_LENGTH];
scanf(TEXT_FORMAT_STRING, T);
This will read every character as long as it is not a newline '\n', and "%*c" ensures that the newline is read but discarded.
2.We have created a script that can automatically test your program. To run this test you can execute the dryrun program that corresponds to this exercise. It expects to find a program named boyer-moore.c in the current directory. You can use autotest as follows:
3.9024 dryrun boyer-moore
 
4.(Knuth-Morris-Pratt algorithm)
Develop, in pseudocode, a modified KMP algorithm that finds every occurrence of a pattern P in a text T. The algorithm should return a queue with the starting index of every substring of T equal to P.
Note that your algorithm should still run in O(n+m) time, and it should find every match, including those that "overlap".
 
5.(Tries)
a.Consider the following trie, where finishing nodes are shown in red:
 
What words are encoded in this trie?
b.If the following keys were inserted into an initially empty trie:
c.boot sorry so axe boo jaw sorts boon jaws
what would the final trie look like? Does the order of insertion matter?
d.Answer question b. for a compressed trie.
 
6.(Text compression)
Compute the frequency array and draw a Huffman tree for the following string:
dogs do spot no hot pots or coats
 
7.(Numerical approximation)
Write a C program to implement the root finding approximation algorithm from the lecture as the function:
double bisection(double (*f)(double), double x1, double x2)
Use your program to find roots for
a.f(x)=3x3−7x2+x+4f(x)=3x3-7x2+x+4, in the interval [−0.5,1.5][-0.5,1.5]
b.f(x)=tanxf(x)=tanx, in the interval [2.0,4.0][2.0,4.0]
c.f(x)=sin10x+cos5x−x210f(x)=sin10x+cos5x-x210, in the intervals [0.0,0.5][0.0,0.5] and [1.0,1.5][1.0,1.5]
with precision ε=10-10.
 
8.(Vertex cover)
a.Apply the approximation algorithm for vertex cover to the following graph:
 
Find two different executions, one that results in an optimal cover and one that does not.
b.What size is an optimal vertex cover for complete graphs Kn? Does the approximation algorithm always find an optimal cover for complete graphs?
c.A complete bipartite graph Km,n is an undirected graph that has:
two disjoint vertex sets Vm and Vn of size m≥1 and n≥1, respectively;
every possible edge connecting a vertex in Vm to a vertex in Vn;
no edge that has both endpoints in Vm or both endpoints in Vn.
Answer question b. for complete bipartite graphs.
 
9.(Feedback)
We (Daria, Kamiyu and Michael) want to hear from you how you liked COMP9024 and if you have any suggestions on how the course should be run in the future.
Log in to MyExperience to provide feedback. Please do so even if you just want to say, "I liked the way it was taught".
 
10.Challenge Exercise
Given a string s with repeated characters, design an efficient algorithm for rearranging the characters in s so that no two adjacent characters are identical, or determine that no such permutation exists. Analyse the time complexity of your algorithm.
 
Assessment
After you've solved the exercises, go to COMP9024 21T3 Quiz Week 9 to answer 5 quiz questions on this week's assessment and lecture.
The quiz is worth 2 marks.
There is no time limit on the quiz once you have started it, but the deadline for submitting your quiz answers is Monday, 15 November 5:00:00pm.
Please also for this final quiz (yay!) respect the quiz rules:
Do …
use your own best judgement to understand & solve a question
discuss quizzes on the forum only after the deadline on Monday
Do not …
post specific questions about the quiz before the Monday deadline
agonise too much about a question that you find too difficult
Reproducing, publishing, posting, distributing or translating this page is an infringement of copyright and will be referred to UNSW Conduct and Integrity for action.
 

热门主题

课程名

litr1-uc6201.200 ee1102 econ42915 cb9101 math1102e chme0017 fc307 mkt60104 5522usst cosc2803 math39512 omp9727 ddes9903 babs2202 mis2002s phya21 18-213 cege0012 mgt253 fc021 int2067/int5051 bsb151 math38032 mech5125 mdia1002 cisc102 07 mgx3110 cs240 11175 fin3020s eco3420 ictten622 comp9727 cpt111 de114102d mgm320h5s bafi1019 efim20036 mn-3503 comp9414 math21112 fins5568 comp4337 bcpm000028 info6030 inft6800 bcpm0054 comp(2041|9044) 110.807 bma0092 cs365 math20212 ce335 math2010 ec3450 comm1170 cenv6141 ftec5580 ecmt1010 csci-ua.0480-003 econ12-200 ectb60h3f cs247—assignment ib3960 tk3163 ics3u ib3j80 comp20008 comp9334 eppd1063 acct2343 cct109 isys1055/3412 econ7230 msinm014/msing014/msing014b math2014 math350-real eec180 stat141b econ2101 fit2004 comp643 bu1002 cm2030 mn7182sr ectb60h3s ib2d30 ohss7000 fit3175 econ20120/econ30320 acct7104 compsci 369 math226 127.241 info1110 37007 math137a mgt4701 comm1180 fc300 ectb60h3 llp120 bio99 econ7030 csse2310/csse7231 comm1190 125.330 110.309 csc3100 bu1007 comp 636 qbus3600 compx222 stat437 kit317 hw1 ag942 fit3139 115.213 ipa61006 econ214 envm7512 6010acc fit4005 fins5542 slsp5360m 119729 cs148 hld-4267-r comp4002/gam cava1001 or4023 cosc2758/cosc2938 cse140 fu010055 csci410 finc3017 comp9417 fsc60504 24309 bsys702 mgec61 cive9831m pubh5010 5bus1037 info90004 p6769 bsan3209 plana4310 caes1000 econ0060 ap/adms4540 ast101h5f plan6392 625.609.81 csmai21 fnce6012 misy262 ifb106tc csci910 502it comp603/ense600 4035 csca08 8iar101 bsd131 msci242l csci 4261 elec51020 blaw1002 ec3044 acct40115 csi2108–cryptographic 158225 7014mhr econ60822 ecn302 philo225-24a acst2001 fit9132 comp1117b ad654 comp3221 st332 cs170 econ0033 engr228-digital law-10027u fit5057 ve311 sle210 n1608 msim3101 badp2003 mth002 6012acc 072243a 3809ict amath 483
联系我们
EMail: 99515681@qq.com
QQ: 99515681
留学生作业帮-留学生的知心伴侣!
工作时间:08:00-21:00
python代写
微信客服:codinghelp
站长地图