代写COMP-1027 Assignment 1 Summer 2024代做Java程序

COMP-1027      Assignment 1      Summer 2024

Learning Outcomes

-   Getting used to programming in Java

-   Overloading constructors

-   Implementing equals(), toString(), getters, and other methods

-   Working with Arrays and ArrayLists

-   Using loops and conditionals

Introduction

Most of us are probably familiar with the beloved family game ‘Scrabble’. In Scrabble, players collect seven random tiles, each consisting of a letter A through Z (for the sake of simplicity, let us that assume the ‘blank’ tile does not exist in this version of the game). Players then use these tiles to create  words that consist of one or more of the letters they’ve randomly selected.

When a word is created using one or more of the seven selected tiles, the value of each of the tiles is summed, and that score is added to the player’s cumulative score. The individual value of each tile is presented below.

In this assignment, you are provided with a text file consisting of all 279,496  words published in the 2019 version of the Collins Scrabble Word dictionary.

Given the letters of seven randomized Scrabble tiles, you must determine the  set of scores that a player could possibly obtain by placing these tiles. We will be assuming three traits that differ slightly from the traditional game of Scrabble:

1. There is an unlimited amount of every letter within the scrabble bag, thus it is reasonable to assume (though incredibly unlikely) that you could obtain something like [‘A’, ‘A’, ‘A’, ‘A’, ‘A’, ‘A’, ‘A’].

2. You will be placing these tiles during the first turn on the board. Thus, you do not need to worry about combining your word with any pre-existing letters that might have already been placed on the Scrabble board.

3. Assume that there exist no word or letter bonuses. We will simply be basing the score off the tile values.

As an example, assume that your seven randomized tiles read: {‘A’, ‘C’, ‘A’, ‘A’, ‘B’, ‘A’, ‘H’}

We are interested in determining:

1. A list of length n of words that can be created using these letters.

2. A sorted list of length n containing the scores (integers) for each of the words of length 1 ≤ m ≤ 7 that can be created using these letters (like

‘AA’, or ‘AAH’, which are both words within the Collins Scrabble Word

dictionary, surprisingly). So, two of the scores that will be in your score   set for the above tile set are 2 (A (1) + A (1) = 2), and 6 (A (1) + A (1) + H (4) = 6).

Provided Files

The following is a list of files provided to you for this assignment. Do NOT alter these files.

-   CollinsScrabbleWords2019.txt

-   TestGame.java to test your solution

-   Sample Tiles.java file with hints

-   Sample Scrabble.java file with hints

Classes to Implement

For this assignment, you must implement two java classes: Tile and Scrabble. Follow the guidelines for each one below.

In these classes, you can implement more private (helper) methods if you want to. You may not, however implement more public methods.

You may not add instance variables other than the ones specified below nor change the variable types or accessibility (i.e. making a variable public when it should be private). Penalties will be applied if you implement additional instance variables or change the variable types of modifiers from what is described here.

Tile.java

This class represents a single Scrabble tile that will be used in the game. The class must have the following private variables:

-   letter (char)

The class must have the following public methods:

-   public Tile() [constructor]

o Set ‘letter’ to a random letter.

o This constructor should call the private ‘generateLetter ’ method provided in the Tile.java template.

-   public Tile(char c) [constructor]

o Initialize letter to the given argument

-   public char getLetter() [getter]

o Returns the value of the letter instance variable

The class has the following private methods (provided to you):

-   private char generateLetter()

o Generates a random char between A and Z (inclusive) and returns the char.

o We use the ‘Random’ class to generate random numbers

o random.nextInt(26) generates a random integers between 0 and 25 (inclusive)

o Adding the generated random number to the ASCII value of ‘A’ (which is 65) maps the number to a corresponding uppercase letter between ‘A’ and ‘Z ’.

Scrabble.java

This class represents the Scrabble game in which there are seven randomly selected tiles, and scoring is performed for each possible word (this will be the tougher class to implement).

The class must have the following private variables:

-   tiles (Tile[])

The class must have the following public methods:

-   public Scrabble() [constructor]

o Initialize the Tile array (tiles) with seven randomized Tile objects.

-   public Scrabble(Tile[] t) [constructor]

o Initialize the tile array with the given array of Tile objects passed as an argument to this constructor.

o You should ensure that the array passed as an argument is of length seven. Otherwise, throw an IllegalArgumentException.

-   public String getLetters()

o Return a string that is comprised of the letters for all of the tile characters (for example, “ABFEODL”)

-   public ArrayList getWords()

o Create an ArrayList of Strings with n elements. Each element   should represent a word that can be created using the current tiles.

o The algorithm for this method should reference the provided file CollinsScrabbleWords2019.txt

o ** do NOT put this file somewhere on your local machine and hardcode the local directory in your code. This will likely cause your tests to fail on GradeScope.

o A portion of this method is provided to you to make things easier (as well as some hints in the comments to figure out a working algorithm).

-   public int[] getScores()

o Create an int array with n elements. Each element in this list

should represent each individual score for each word that can be created using the current tiles. This should be returned in ascending order.

o You should call the getWords method in this method!

-   public Boolean equals(Scrabble s)

o Compare the given Scrabble object from the argument with the  ‘this’ object to see if they are equal (do they have the same tiles, assuming that the order of the tiles doesn’t matter?).

o Assuming we are comparing two Scrabble objects, s1 and s2, thenif s1.getLetters() == “AAAAAAB ” and s2.getLetters == “ BAAAAAA ”, then s1.equals(s2) should be true.

o Conversely, if s1.getLetters() == “AAAAAAA” and s2.getLetters == “ BAAAAAA ”, then s1.equals(s2) should be false.

The class has the following private methods (provided to you):

-   private int getLetterValue(char letter)

o Returns the value of a letter (based on the figure on page 1 of this document).

o To be used in the getScores() method.

Marking Notes

Functional Specifications

-   Does the program behave according to specification?

-   Does the program produce the correct output and pass all tests?

-   Are the classes implemented properly?

-   Does the code run on another machine (i.e., is anything hardcoded? It shouldn’t be)

-   Does the code produce compilation or runtime errors?

-   Does the program follow all stated rules and match the specifications laid out in the ‘Classes to Implement’ section?

Non-Functional Specifications

-   Are there comments throughout the code?

-   Are variables within the methods given appropriate and meaningful names?

-   Is the code clean and readable with proper indenting and white-space?

-   Is the code consistent regarding formatting and naming conventions?

-   Submission errors (i.e., missing files, too many files, etc.) will receive a penalty of 5%.

-   Including a package’ line at the top of a file will receive a penalty of 5%.

** Remember you must do all the work on your own. Do not copy or even look at the work of another student. All submitted code will be run through similarity detection software.

Rules

-   Please only submit the files specified below.

-   Do not upload the .class files! A 5% penalty will be applied for this.

-   Submit your assignment on time. Late submissions will receive a penalty of 10% per day up to three days.

-   Forgetting to submit is not a valid excuse for submitting late.

-   Submissions must be done through Gradescope.

-   Assignment files are not to be emailed to the instructor or TAs. They will not be marked if sent by email.

Testing your Code

The TestGame class tests the functionality of your methods (so you can see if your code is working properly). These tests are similar, but not identical, to the tests that will be used to grade your work. You do not need to understand all the code presented in the TestGame.java file. Just compile and execute it.

Test 1 and test 2 test the getLetters method

Test 3 and test 4 test the equals method

Test 5 and test 6 test the getWords method

Test 7 and test 8 test the getScores method

To test your code, compile and execute TestGame.java. If everything is working properly, you should see:

Test 1 Passed

Test 2 Passed

Test 3 Passed

Test 4 Passed

Test 5 Passed

Test 6 Passed

Test 7 Passed

Test 8 Passed

Otherwise, check while tests you are failing and that should give you an indication of where you should be focusing your attention.

Files to Submit

-   Tile.java

-   Scrabble.java

** Note that you do not need to submit the CollinsScrabbleWords2019.txt file.

Using the Tests

To use the TestGame.java file provided, place the TestGame.java file in the same location on your machine as your Scrabble.java, Tile.java, and CollinsScrabbleWords.txt files and compile and run the TestGame.java file. You should be passing all tests.

Grading Criteria

Total Marks [20]

Passing custom tests (similar but not identical to the ones provided) [17]

-   There will be 8 tests of increasing value.

Following document specifications [3]

-   Does your code comply with all ‘non-functional specifications’ discussed above?




热门主题

课程名

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