Starting from:

$29.99

Evil Hangman - Using Data Structures_Solution

Specification 5 - Evil Hangman - Using Data Structures

General Assignment Requirements
The purpose of this assignment is to implement a program that uses data structures including lists and maps to play an almost unbeatable version of Hangman.



Files:
File
Responsibility
Dictionaries
smallDictionary.txt A dictionary with just 9 words, good for testing.
dictionary.txt A large dictionary with tens of thousands of words.
Provided by me
Java Documentation
Java API for Map Interface and TreeMap
Java API for  ArrayList
Java API for StringBuilder
Provided by Oracle
Sample output
Sample outputs of the Evil Hangman Programsample log 1 (using the small dictionary with debugging and hardest difficulty)
sample log 2 (using the small dictionary with debugging and easiest difficulty)
sample log 3 (using the small dictionary without debugging, various difficulties)
sample log 4 (using the large dictionary with debugging and hardest difficulty)
sample log 5 (using the large dictionary with debugging and easiest difficulty)
sample log 6 (using the large dictionary without debugging and hardest difficulty)
sample log 7 (using the large dictionary without debugging and medium difficulty)
sample log 8 (using the large dictionary without debugging and easiest difficulty)
Provided by me. Your programs output must match the sample runs with debugging off exactly. You can copy and paste into quick diff to compare.The only allowable difference is when a player loses. The word printed is random and so your output may not match in some cases.
Implementation
HangmanMain.java  - The driver program for the game.
Provided by me.
Implementation 
and Submission
HangmanManager.java - A class that keeps track of the state of the Hangman game.
I provide the shell, you complete class.
Testing
In the past students visual inspected their results and compared them to the sample output logs. Students often missed or didn't test for errors and then failed 50 or more of our automated tests. Now you have access to the kinds of tests we run and our testing program. (The actual tests we use will be different of course.)Once you are sure your program is correct, you can and should generate your own tests and share them with other students.

EvilHangmanAutoTester.java - Uses your HangmanManager and the tests encoded in evilTests.txt to automatically test. As new test files get generated you can alter the name of the input file.

evilTest.eht - Data file for EvilHangmanAutoTester.java. The file was generated by printing out objects that implement the Serializable interface (such as TreeMap) that allow an object to be printed out and read in with a single line of code. (And is generally more efficient that printing out a String version of the object.)

GenerateTests.java - Use this to generate your own tests to share with other students. Replace the testN methods or add new ones and change the name of the output file.
Provided by me
Problem Description: This is no ordinary hangman game. This is Evil Hangman. In this version of the game the computer cheats, but in a very clever way.

If you are not familiar with the game read the Wikipedia entry. You can also find many versions of the game online such as this one.

Our version of the game will not have any graphics or drawings of the gallows..

Evil Hangman is, well, evil, because the computer puts off picking a word for as long as possible. The computer starts off with a dictionary of words. As the user guesses letters the computer narrows the list of words that are active, meaning words that could still be chosen. The words (really just Strings) in the active list all  have the same pattern as the "word" displayed to the user.

A pattern consist of the letters that have been guessed correctly and the letters that have not been guessed yet. For example, if the current pattern is "-e-e-" then the words "beget", "beret", "bevel", "defer", "deter" and so forth would be in the list of active words. Those words "match" the pattern. The "-" characters are wildcard characters and represent any character that has not been guessed yet.

When the user guesses a letter the computer splits the current list of words into different families (really just various lists of words) based on the letter the user just guessed and the resulting pattern of that letter in words from the current list. The computer then picks a list of word from the various lists that have been created. If the computer is being very, it picks the list of words that is largest as the new active list. (The program also allows the difficulty to vary so the picked list may not always be the list with the largest number of words.)

I am providing a driver program that handles the input and output. You are writing a class, HangmanManager that keeps track of the state of the game and narrows the list of words as the user makes guesses. Your HangmanManager class must have the following methods:

Method Name
Description
public HangmanManager(List<String words, 
                                 boolean debug)
A constructor that creates the HangmanManager. words will be a nonempty list of Strings. You can assume the Strings will contain only lower case letters. The List is unmodifiable, so you will have to store the active words in another list. (an ArrayList of Strings)The constructor only copies the dictionary. It doesn't do a lot of other prep work. Most of that is done in prepForRound. Which you could of course call from the constructor if you want.
public boolean alreadyGuessed(char guess)
This method returns true if the user has already guessed the given character, false otherwise.
public int getGuessesLeft()
This method returns the number of wrong guesses the user has left.
public String getGuessesMade()
This method returns the letters the user has guessed so far in sorted order. (Hint: use an ArrayList<Character to store the guesses made so far and return the result of toString on that ArrayList. Use the Collections.sort method to sort the ArrayList of guesses each time one is added.
public String getPattern()
This method returns the current pattern to be displayed for the hangman game taking into account guesses that have been made.  Letters that have not yet been guessed should be displayed as a dashes.  There shall only be lower case letters and dashes in the returned String.
public String getSecretWord() {
This method gets the secret word the computer finally settles on. If the user has not guessed the word then pick a word at random from the active list. If the list has been narrowed to one word and the user has guessed it, return that word. This method throws an IllegalStateException if the list of active words is size 0. (This should never occur if you implement the program correctly.)
public TreeMap<String, Integer makeGuess(char guess)
This is the method does the heavy lifting. The precondition is !alreadyGuessed(guess). If the character has already been guessed throw an IllegalStateException .Using this guess, the HangmnaManager decides what set of words to use going forward. The method returns a map of the patterns it generated and how many words matched each pattern. (Note, the HangmanManager does not keep track of this map as an instance variable.) After this method the active list of words may be changed. It is important to realize there is a lot to do in this method including updating the active pattern, the letters that have been guessed so far, and the number of wrong guesses if the pattern does not change.

Note the return value is used for testing and debugging. The return value is not used if running the game under normal circumstances. (For example, when you let your roommate play the game and make a wager they can't win, even with 12 guesses.)

Use a local variable of type TreeMap<String, ArrayList<String in this method (or one of its helpers) to break the current word list up into different patterns and words based on the user guess.
public int numWords(int length)
This method returns the number of words in the original dictionary of the given length. It is used at the beginning of each game to ensure the user picks a valid word length.
public int numWordsCurrent()
This method returns the number of words in the active list of words. (not the original dictionary.) It is used for debugging purposes to show how many words are left in the active list.
public void prepForRound(int wordLen, int numGuesses, int diff)
This method must be called before each game, including the first one.It is an important method. the HangmanMain program allows the user to play the game. Instead of creating a new HangmanManager object each time a person plays a game, call this method to prepare (or reset) the HangmanManager object with the new word length, number of wrong guesses allowed, and the difficulty. It is important to realize this method must also reset the list of active words, the pattern, and the number of wrong guesses.

The precondition is numWords(wordLen) != 0, numGuesses 0, and diff is between the HangmanMain.EASY andHangmanMain.HARD constants. If the precondition is not met throw an IllegalStateException.
Add the instance variables you need to HangmanManager class. Add helper methods as necessary to keep methods small and easier to understand. My version of the makeGuess method uses five private helper methods in addition to the public methods listed above. For reference my solution has 10 (That is a lot and I am trying to figure out a way to reduce it.)  instance variables and is 315 lines long. That 315 lines includes a lot of blank lines, debugging code, instance variable declarations, method headers, import statements, comments, and lines with a single closing brace. The actual number of lines of code is on the order of 170.

Explanation of How the Computer Cheats:  As noted earlier, this version of hangman cheats.  It doesn’t actually pick a word until it needs to.  Suppose that the user has asked for a 5-letter word.  Instead of picking a specific 5-letter word, it picks all 5-letter words from the original dictionary.  But then the user makes various guesses, and the program can’t completely lie.  It has to somehow fool the user into thinking that it isn’t cheating.  In other words, it has to cover its tracks.  Your HangmanManager object shall do this in a very specific way every time the makeGuess method is called.  Let’s look at a small example.

Suppose that the dictionary contains just the following 9 words:

[ally, beta, cool, deal, else, flew, good, hope, ibex]

Now, suppose that the user guesses the letter ‘e’.  You now need to indicate which letters in the word you've “picked” are e's.  Of course, you haven't picked a word, and so you have multiple options about where you reveal the e's. Every word in the set falls into one of five “word families:”

·         “- - - -”: which is the pattern for [ally, cool, good]

·         “- e - -”: which is the pattern for [beta, deal]

·         “- - e -”: which is the pattern for [flew, ibex]

·         “e - - e”: which is the pattern for [else]

·         “- - - e”: which is the pattern for [hope]

Since the letters you reveal have to correspond to some word in your word list, you can choose to reveal any one of the above five families. There are many ways to pick which family to reveal – perhaps you want to steer your opponent toward a smaller family with more obscure words, or toward a larger family in the hopes of keeping your options open.  In this assignment, in the interests of simplicity, we'll adopt the latter approach and always choose the largest of the remaining word families. In this case, it means that you should pick the family “- - - -”. This reduces your set of words to:

[ally, cool, good]

Since you didn't reveal any letters, count this as a wrong guess.

Let's see a few more examples of this strategy. Given this three-word set, if the user guesses the letter 'o;, then you would break your word list down into two families:

·         “- o o -”: containing [cool, good]

·         “- - - -”: containing [ally]

The first of these families is larger than the second, and so you choose it, revealing two 'o's in the word and reducing your set of words to

[cool, good]

In this case the user has correctly guessed a letter because there are two occurrences of 'o' in the new pattern.

But what happens if your opponent guesses a letter that doesn't appear anywhere in your word list? For example, what happens if your opponent now guesses 't'? This isn't a problem. If you try splitting these words apart into word families, you'll find that there's only one family – the family “- o o -” in which t appears nowhere and which contains both “cool” and “good”. Since there is only one word family here, it's trivially the largest family, and by picking it you have maintain the word list you already had and you would count this as an incorrect answer.

Here is a useful diagram that shows the winnowing process based on user guesses.

To implement this strategy, use a map.  The keys will be the different patterns for each word family.  (You are free to use String, StringBuilder, arrays, or other classes to determine what patterns exist based on the active word list, the previous pattern, and the user's guess.) Those keys should map to a list of words that have that pattern. 

For each call to makeGuess, you will find all of the word families based on the current list of active words (not the original dictionary, except for the first guess) and pick the one that has the hardest. 

The hardest word list / family is defined as the one with the largest number of words.  (This family becomes the new list of words for the next round of the game.)  If there is a tie for the family with the most words (two of the word families are of equal size), pick the family that reveals the fewest total characters. If there is still a tie, pick the family that has the pattern that is "smallest" based on the ASCIIbetical (lexigraphical order based on ASCII codes) ordering of the patterns. This is not as hard as it sounds. A TreeMap with keys of type Strings, stores the the keys in ASCIIbetical order without any extra effort on your part. This, in turn, is based on the compareTo method in the String class. Look here for more info on ASCIIbetical order, lexigraphical order, and Alphabetical vs. ASCIIbetical order. (The last link is to a very interesting blog post about Alphabetical vs. ASCIIbetical order and how most built in String sorts are ASCIIbetical, but when displaying info to real users, like a list of files, true alphabetical is preferred.)

Summary of hardest word list / family:

Family with the maximum elements
If there are two or more families with the maximum number of elements break the tie by picking the one that reveals the fewest characters
If there are two or more families with the maximum number of elements and reveal the same number of characters  break the tie by picking the pattern that is "smallest" based based on the lexigraphical ordering of Strings. 

Toy example of lexigraphical ordering.

String pat1 = "---a";
String pat2 = "a---";
System.out.println(pat1.compareTo(pat2)); // prints out a negative integer. "---a" is lexigraphically smaller (or before) "a---"
System.out.println(pat2.compareTo(pat1)); // prints out a positive integer. "a---" is lexigraphically larger (or after) "---a"
Your program should implement these behaviors in a reasonably efficient way in terms of time and space.

Difficulty: Worry about this last. In order to moderate the evilness of the program the user is allowed to enter a difficulty level, a value from 1 to 3. The strategy described above assumes the difficulty is 3, the hardest. Initially ignore the user's choice for difficulty and implement the algorithm above. When you have that working then alter the makeGuess method to take into account the difficulty.

If the difficulty is the max, 3,  then the program picks the word list as descried above. [3 = HARD = ALWAYS EVIL], always picks the hardest word list / family.

If the difficulty is 2 [MEDIUM] the program picks the hardest word list / family 3 times in a row, then the second  hardest word list, then the hardest word list / family 3 times in a row, then the second hardest word list / family. This pattern repeats until the game is over. The game should be a little less difficult if the program doesn't always pick the hardest word list / family. If their is only one word list / family and it is time to pick the second hardest , just pick the single word list / family. Then go back to picking the hardest. In other words the behavior for picking word lists at this difficulty level is:

Medium behavior for picking new list of words in makeGuess method: 
Guess 1, PICK HARDEST WORD LIST
Guess 2, PICK HARDEST WORD LIST
Guess 3, PICK HARDEST WORD LIST
Guess 4, PICK SECOND HARDEST WORD LIST IF IT EXISTS, OTHERWISE PICK HARDEST 
Guess 5, PICK HARDEST WORD LIST
Guess 6, PICK HARDEST WORD LIST
Guess 7, PICK HARDEST WORD LIST
Guess 8, PICK SECOND HARDEST WORD LIST IF IT EXISTS, OTHERWISE PICK HARDEST 
and so forth ...

If the difficulty is 1 [EASY]  alternates between picking the longest word list and the second longest word list if it exists:

Easy behavior for picking new list of words in makeGuess method: 
Guess 1, PICK HARDEST WORD LIST
Guess 2, PICK SECOND HARDEST WORD LIST IF IT EXISTS, OTHERWISE PICK HARDEST 
Guess 3, PICK HARDEST WORD LIST
Guess 4, PICK SECOND HARDEST WORD LIST IF IT EXISTS, OTHERWISE PICK HARDEST 
Guess 5, PICK HARDEST WORD LIST
Guess 6,  PICK SECOND HARDEST WORD LIST IF IT EXISTS, OTHERWISE PICK HARDEST 
Guess 7, PICK HARDEST WORD LIST
Guess 8, PICK SECOND HARDEST WORD LIST IF IT EXISTS, OTHERWISE PICK HARDEST 
and so forth ...

If it is time to pick the second hardest word list, but there is only one word list, then that is the pick. The second hardest does not roll over to the next round in this case.

Hint: To find the hardest word list / family and to make the difficulty portion easier make create a Comparator or a nested class that implements Comparable and use Collections.sort. The official Java tutorial section on Comparable and Comparators and another tutorial.

More products