代写FIT2004 Data Structures and Algorithms Assignment 2 - Semester 1 2025代写Python语言

FIT2004 Data Structures and Algorithms

Assignment 2 - Semester 1 2025


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 over time.

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, 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, add comments where appropriate.  Generally speaking, you would com- ment 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 complexity:

: 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 code to the level required in the unit.

Warning

For all assignments in this unit, you may not use python dictionaries or sets.  This is because the complexity requirements for the assignment are all deterministic worst-case requirements, and dictionaries/sets are based on hash tables, for which it is difficult to determine the deter- ministic worst-case behaviour.

Please ensure that you carefully check the complexity of each in-built python function and data structure that you use, as many of them make the complexities of your algorithms worse. Common examples which cause students to lose marks are list slicing, inserting or deleting elements in the middle or front of a list (linear time), using the in keyword to check for membership of an iterable (linear time), or building a string using repeated concatenation of characters.   Note that use of these functions/techniques is not  forbidden, however you should exercise care when using them.

Please be reasonable with your submissions and follow the coding practices you’ve been taught in prior units (for example, modularising functions, type hinting, appropriate spacing). While not an otherwise stated requirement, extremely inefficient or convoluted code will result in mark deductions.

These are just a few examples, so be careful. Remember that you are responsible for the complexity of every line of code you write!

1    A Crowded Campus (9 marks)

The problem of class allocation is only becoming more and more difficult due to the current physical space constraints.  There are many variables involved in the problem of allocating a unit’s classes to specific classrooms and times, and allocating students to specific classes such as:

• the total number of students expected to enroll in a unit, •  which rooms have the necessary resources for the classes, •  how big the rooms are,

the time availability of the students,

•  and the time availability of the classrooms.

Given that physical space availability is currently the main bottleneck and that there are certain times of the day that are more preferred amongst students, the team responsible for managing the classroom spaces is considering placing stricter constraints on the usage of classroom space, based on the following general principles:

•  During prime-time, a classroom would only be allocated to a specific unit if it is possible to allocate students to that class such that it reaches very close to the room capacity.

•  During less popular times, the allocation of spaces is more flexible.

•  For  classroom  spaces  which  are  more  popular with the  units  (as  they  have  the  best resources), the occupancy limits are stricter.

And, of course, the university also wants to make students as satisfied as possible by allocating as many students as they can to classes in their preferred times/days of the week.

The spaces admin team did a detailed analysis to set reasonable numbers for the minimum oc- cupancy rate of specific classrooms during specific times of the day  (based on the popularities of the classroom and the time slot).  They have put a great effort in trying to come up with a draft allocation of classes to specific classroom spaces and times, but they have soon realised that verifying if it is possible to allocate the students accordingly to satisfy all the outlined constraints would be extremely hard to do manually.  As they do not have a computer scientist in their team, they have asked for your help.

Particularly, they have asked you to help them verify the draft allocation of FIT2004 applied classes to specific classrooms and times.  There are twenty time slots in which FIT2004 applied classes can run each week, as they are three hours long.  These time slots will be numbered 0, 1, . . . , 19.

You are given as input the following data:

• A positive integer n denoting the number of students to be allocated to FIT2004 applied classes. The students will be numbered 0, 1, . . . , n - 1.

• A positive integer m denoting the number of proposed FIT2004 applied classes in the draft. The proposed classes will be numbered 0, 1, . . . , m − 1.

• A  list  of  lists   timePreferences  of  outer   length  n.     For   i    ∈   0, 1, . . . , n  − 1,    timePreferences[i] contains a permutation of the elements of set {0, 1, . . . , 19} to indi- cate the time slot preferences of student i. The time slots in timePreferences[i] appear in order of preference, with the time slot that student i likes the most appearing first.

• A list of lists proposedClasses of outer length m.  For j ∈ 0, 1, . . . , m − 1:

- proposedClasses[j][0] denotes the proposed time slot for the j-th class.  Poten- tially, there can be multiple FIT2004 applied classes running in parallel.

- proposedClasses[j][1] and proposedClasses[j][2] are positive integers that denote respectively, the minimum and maximum number of students that can be allocated to the j-th class to satisfy the space occupancy constraints.

• A positive integer minimumSatisfaction. It holds that minimumSatisfaction ≤ n.

Your task is to write an algorithm that returns an allocation of each student to a proposed class. The returned allocation should satisfy the following requirements:

•  Each student is allocated to exactly one class.

•  Each proposed class satisfies its space occupancy constraints.

• At least minimumSatisfaction students get allocated to classes with class times that are within their top 5 preferred time slots.

To solve this problem, you should write a function crowdedCampus(n,  m,  timePreferences, proposedClasses, minimumSatisfaction):

• In case no allocation satisfying all constraints exists, your algorithm should return None (i.e., Python NoneType).

•  Otherwise, it should return a list allocation of length n containing exactly one possible allocation of the students to the classes that satisfies all constraints.  For i ∈ 0, 1, . . . , n−1, allocation[i] denotes the class number to which student i would be allocated.

Your algorithm should have worst-case time complexity O(n2 ) and worst-case auxiliary space complexity O(n).

2    Typo (9 marks)

Levenshtein Distance or Edit Distance is a metric to measure the difference between two words

– the minimum number of single-character edits (insertions, deletions or substitutions) required to change one word into the other .

You are an AI abuser and always ask an AI to do your assignment for you.   However,  the assignment forbids the use of AI and the AI is smart enough to ignore you no matter what you try to prompt it with.  In fact, the AI is a troll and will provide wrong Python code and documentation with words that have Levenshtein distance exactly one from what it should be. Furthermore, it will only perform substitutions, and not insertions nor deletions.

You have learned that AI cannot be trusted and therefore are now coding a Python program to identify words that have Levenshtein distance exactly one from what they should be when only substitutions are considered.  You are implementing a primary data structure that will help you efficiently compute this, as per the following signature:

class Bad_AI:

def __init__ (self, list_words):

# ToDo: Create a data structure that stores list_words efficiently for the next task .  Remember dictionary,  including  hashing,  should not be used .

def  check_word(self, sus_word):

# ToDo: This function identify words with Levenshtein distance value of exactly one  (substitution) .

2.1 Input

Based on the class signature given earlier, you have the following inputs:

•  list_words is a list of N words, where the longest word has M characters and all of the characters in list_words add up to C. Thus, O(C) ≤ O(M * N).

•  sus_word is a word with J characters.

•  The characters in both lists are all lowercase, in the range of a . . . z.  There are no special characters involved.

• All words in list_words are unique and you cannot assume they are in any particular order.

2.2 Output

The function check_word(self,  sus_word) returns result - a list of the words from list_words whose Levenshtein distances to sus_word are equal to 1 when allowing only substitutions.  If    there are no such words, it would be an empty list  [].

Refer to the example(s) provided in Section 2.3.

2.3 Example

if  __name__  == "__main__ ":

list_words =  ["aaa",  "abc",  "xyz",  "aba", "aaaa"] list_sus =  ["aaa",  "axa",  "ab",  "xxx",  "aaab"]

my_ai = Bad_AI(list_words)

for sus_word in list_sus:

my_answer  = my_ai. check_word(sus_word)

my_answer will contain the following for each iteration:

[''aba'']

[''aaa', ''aba'']

[]

[]

[''aaaa'']

2.4 Complexity

The class Bad_AI would have the following complexity:

• Function  __init__ (self,  list_words) should have a worst-case time complexity of O(C) with a worst-case auxiliary space complexity of O(C).

• Function  check_word(self,  sus_word)  should have a worst-case time complexity of O(J * N) + O(X) with a worst-case auxiliary space complexity of O(X).  X is the total number of characters returned in the correct result.


热门主题

课程名

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