代做FIT2004 Semester 2 2024: Assignment 2代做Python编程

FIT2004 Semester 2 2024: Assignment 2

Learning Outcomes

This assignment achieves the Learning Outcomes of:

• Analyse general problem solving strategies and algorithmic paradigms, and apply them to solving new problems;

•  Prove correctness of programs, analyse their space and time complexities;

•  Compare and contrast various abstract data types and use them appropriately;

•  Develop and implement algorithms to solve computational problems.

In addition, you will develop the following employability skills:

Text comprehension.

•  Designing test cases.

Ability to follow specifications precisely.

Assignment timeline

In order to be successful in this assessment, the following steps are provided as a suggestion. This is an approach which will be useful to you both in future units, and in industry.

Planning

1.  Read the assignment specification as soon as possible and write out a list of questions you have about it.

2. Try to resolve these questions by viewing the FAQ on Ed, or by thinking through the problems overtime.

3. As soon as possible, start thinking about the problems in the assignment.

• It is strongly recommended that you do not write code until you have a solid feeling for how the problem works and how you will solve it.

4. Writing down small examples and solving them by hand is an excellent tool for coming to a better understanding of the problem.

•  As you are doing this, you will also get a feel for the kinds of edge cases your code will have to deal with.

5. Write down a high-level description of the algorithm you will use.

6.  Determine the complexity of your algorithm idea, ensuring it meets the requirements.

Implementing

1.  Think of test cases that you can use to check if your algorithm works.

•  Use the edge cases you found during the previous phase to inspire your test cases.

•  It is also a good idea to generate large random test cases.

•  Sharing test cases is allowed, as it is not helping solve the assignment.

2.  Code up your algorithm  (remember decomposition and comments), and test it on the tests you have thought of.

3. Try to break your code.  Think of what kinds of inputs you could be presented with which your code might not be able to handle.

Large inputs

Small inputs

Inputs with strange properties

What if everything is the same?

What if everything is different?

etc...

Before submission

Make sure that the input/output format of your code matches the specification.

•  Make sure your filenames match the specification.

•  Make sure your functions are named correctly and take the correct inputs.

•  Remove print statements and test code from the file you are going to submit.

Documentation

For this assignment (and all assignments in this unit) you are required to document and com- ment your code appropriately. Whilst part of the marks of each question are for documentation, there is a baseline level of documentation you must have in order for your code to receive marks. In other words:

Insufficient documentation might result in you getting 0 for the entire question for which it is insufficient.

This documentation/commenting must consist of (but is not limited to):

• For each function, high-level description of that function.  This should be a two or three sentence explanation of what this function does.

• Your main function in the assignment should contain a generalised description of the approach your solution uses to solve the assignment task.

• For each function, specify what the input to the function is, and what output the function produces or returns (if appropriate).

• For each function, the appropriate Big-O or Big-Θ time and space complexity of that function, in terms of the input size.  Make sure you specify what the variables involved in your complexity refer to.  Remember that the complexity of a function includes the

complexity of any function calls it makes.

• Within functions, comments where appropriate.  Generally speaking, you would comment complicated lines of code (which you should try to minimise) or a large block of code which performs a clear and distinct task (often blocks like this are good candidates to be their own functions!).

A suggested function documentation layout would be as follows:

def my_function(argv1, argv2):

"""

Function description:

Approach description  (if main  function):

:Input:

argv1: argv2:

:Output, return or postcondition: :Time  complexity:

:Time complexity analysis:

:Space and auxiliary  space  complexity:

:Space and auxiliary space complexity analysis:

"""

# Write your  codes here .

There is a documentation guide available on Moodle in the Assignment section, which contains a demonstration of how to document the code to the level required in the unit.

1    A Fun Weekend Away

(10 marks, including 2 marks for documentation)

Given all the hard work during the semester, you and your friends decided that you should better get a weekend off after Week 12 before starting preparing for your final exams.  Your plan is to do some fun activity (e.g., surfing, hiking, kayaking, mountain biking, etc.)  during this weekend getaway. However, during your initial talks you quickly recognised that:

• There are a total of n participants that want to get a weekend getaway (where n is an integer greater than 1). The participants will be denoted by P0 , . . . , Pn1 .

•  People have different preferences regarding which activity they would prefer to do.

• While some people would prefer to do one activity that they already have experience on, others would prefer to try something new.

•  It would be wise to have some people with previous experience to lead each activity.

•  Everybody is fine with helping leading one activity if they have previous experience on that activity.  But no one wants to be a leader for the whole weekend as everyone also wants to have some chill time.

After some discussion you settled on the following criteria:

• You shortlisted some m activities denoted by A0 , . . . , Am1  that the participants would be assigned to.

•  Each person should be assigned to one activity they are interested in, and that person would be doing that activity for the whole weekend.

•  For each activity Aj , you need one leader for Saturday and another different leader for the Sunday.  Both leaders need to have previous experience in activity  Aj .  You already filtered the list of activities to guarantee that for each activity Aj  there are at least two participants with previous experience on it. You can assume that the number of activities is at most n/2.

Some of your friends had a bit more free time, so they went ahead and did the heavy work of surveying the preferences of all participants and their previous experiences, and also of trying to figure out accommodation, transportation, equipment renting, etc for each activity.  They have put some reservations on hold, but they got stuck with the problem of assigning the par- ticipants to the specific activities.  They need urgent help to confirm if the current plan for each activity is good in the sense of having some assignment from the participants to the activities that would satisfy all criteria (and thus they can proceed with the reservations), and, if such assignment exists, how to obtain one.

As the computer science expert in the group, you were tasked with writing a computer program to solve that task. You are given as input the following data:

• A list of lists preferences.  For each person Pi  and each activity Aj , preferences[i][j] would be:

- equal to 0 if the person is not interested in that activity.

- equal to 1 if the person is interested in that activity but has no previous experience on it.

- equal to 2 if the person is interested in that activity and has previous experience on it.

- You can assume that every person is interested in at least one activity.

• A list places.  For each activity Aj , places[j] indicates how many people should be going to do the activity Aj  if the reservations that are on hold were to be confirmed. You can assume that places[j] ≥ 2 for each j. And it holds that ε0(−)1 places[j] = n.

Your program should either find a way to partition the participants into the activities so that all the above constraints are satisfied; or correctly indicate it is impossible to partition the participants into the activities while satisfying all constraints.

To solve this problem, you should write a function assign(preferences, places) that re- turns:

• None (i.e., Python NoneType), if it is impossible to assign the participants into the ac- tivities while satisfying all constraints.

•  Otherwise, it returns a list of lists activities in which, for 0 ≤ j ≤ m−1, activities[j] is a list identifying the indices of the participants that will be going to activity Aj . If there are multiple valid options to partition the participants into the activities while satisfying all constraints, you can return any of those valid options (but should return exactly one of them).

1.1 Example

Consider the following example in which the function returns one valid assignment for the specified input.

#  Example

preferences =  [[2,  1],  [2,  2],  [1,  1],  [2,  1], [0,  2]] places = [2, 3]

>>> assign(preferences, places) [[0, 3],  [1, 4, 2]]

1.2 Complexity

Your solution should have a worst-case time complexity of O (n3 ).

2    Customised Spell Checker

(10 marks, including 2 marks for documentation)

Allen likes the spell checking feature in his phone but finds that it occasionally fails to align with his messaging style, particularly when he uses social media acronyms.  For example, Allen may type "DM me" to mean “direct message me,” but the spell checker might suggest “AM” or “dem” for correcting "DM".

In this task, we wish to create a customised spellchecker that can make correction suggestions according to users’ preference on word choice.  The customisation is based on the user’s previous messages sent using the phone.

To solve this problem, you are required to create a class SpellChecker.  The constructor for this class takes a file Messages . txt as a parameter.   Additionally, this class has a method check(input) to check an input word and suggest possible corrections.

2.1 Input

You are provided with a file Messages . txt where each line consists of a message. A few example messages in the file are shown below.

Oh, LOL .

I do not understand . ELI5 . I  know  how  to  do  this,  AMA .

Although Messages . txt is provided on Moodle to make it easier for verifying the correctness of your implementation, you cannot assume that the file used for testing your algorithm will be similarly small. Your program will be tested on a different and potentially much larger file.

Each line in Messages . txt should be converted into a list of words before counting their frequency. For this assignment, we assume that a word contains only alphabetic characters (“a” to “z” and “A” to “Z”) and numerical digits (“0” to “9”).  Other symbols, such as spaces  (“  ”), commas (“,”), periods (“.”), or question marks (“?”), should not be included in a word.  Note that the spellchecker is case-sensitive.

2.2 Output

The check method accepts a single word input. If input matches any word in your previous messages, check returns an empty list. Otherwise, check returns a list of at most three words that have a non-empty common prefix with input.  If there are no words sharing a common prefix with input, an empty list should be returned.  If there are more than three words sharing a common prefix with input, all words are ranked:

• firstly by the number of characters in the common prefix shared with  input  (longer prefixes take precedence),

•  secondly by the frequency of the word in Messages . txt (higher frequencies take prece- dence),

• thirdly by the ASCII value ordering following the characters from the left to right of the words (smaller ASCII value ordering take precedence).

Note that a word a has a smaller ASCII value ordering than a word b in the following cases:

1. When two words are of the same length, say a = a1 a2 . . . , ak  and b = b1 b2... bk , then ai has a smaller ASCII value than bi  for the first place i where the two words differ.

2.  Otherwise, two words have different lengths.  The shorter word is padded with the null character (with ASCII value 0) at the end until two words have the same length, and then two words are compared as in the first case.

The check method returns the TOP 3 words according to the above ranking.  However, the words in the output list do not need to follow any specific order.

2.3 Example

Suppose you are given a file Messages . txt as follows:

Oh, LOL .

I do not understand . ELI5 .

IDK . Tell me more .

LMK if you want to go .

If you will not go, me neither . I know how to do this, AMA .

Fine, IDC .

BTW,  I will not  come back home  for dinner tonight. IDK . Tell me more .

After initialisation, your SpellChecker will have the following outputs:

>>> myChecker = SpellChecker("Messages. txt") >>> myChecker. check("IDK")

[]

>>> myChecker. check("zoo") []

>>> myChecker. check("LOK") ["LOL", "LMK"]

>>> myChecker. check("IDP") ["IDK", "IDC", "I"]

>>> myChecker. check("Ifc") ["If", "I", "IDK"]

2.4 Complexity Requirements

• The __init__ method of SpellChecker must run in time complexity O(T), where T is the total number of characters in Messages . txt.

• Let M be the length of the string input and U be the total number of characters in the correct output that should be returned by check on that input, then check must run in time complexity O(M + U).  Note that this is an output dependent complexity.  For example, if there are no words match the string input, check should complete in O(M).

Important: You are NOT ALLOWED to use hash functions/tables (e.g. Python dictio- nary) or linked lists in your implementation.

The list data structure of fixed size in Python is allowed, [ ].




热门主题

课程名

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
站长地图