Show the grid with the letters of the phrase indicated

Assignment Help Computer Engineering
Reference no: EM131436318

Assignment: Computer Science Recursion & Backtracking

Purpose: We have discussed recursion and in particular backtracking algorithms (such as Eight Queens). In this assignment you will get some practice at recursive programming by writing a backtracking algorithm to find phrases in a puzzle.

Idea: "Word search" puzzles are common in newspapers, on restaurant placemats and even in their own collections within books. These vary in format from puzzle to puzzle, but one common format is as follows: A user is presented with a 2-dimensional grid of letters and a list of words. The user must find all of the words from the list within the grid, indicating where they are by drawing ovals around them. Words may be formed in any direction - up, down, left or right (we will not allow diagonals even though most puzzles do allow them) but all of the letters in a word must be in a straight line.

This idea can be extended to allow phrases to be embedded in the grids. However, requiring an entire phrase to be in a straight line on the board is not practical, as the dimensions of the board would need to be overly large. Therefore, we will still require the letters in each word to be in a straight line, but we are allowed to change direction between words.

For example, we might be given the following 10x10 grid of letters:

a b s t r a c t i j
a t a d t d a t a j
t b c d c a g h t j
y b c d a t g h y j
p b c d r a g h p j
e b c d t f l h e j
s a r e s f o h s j
a r e d b f o h a j
r b c d a f c h r j
e r e a l l y r e j

and the following phrases:

abstract
abstract data types
abstract data types are really cool
abstract data types are really awesome

Upon searching, assuming the grid starts in the upper left corner with position (0,0), and that the row is the first coordinate:

abstract would be found in two places:
[(0,0) to (0,7)] and
[(8,4) to (1,4)]

abstract data types would also be found in two places:
[(8,4) to (1,4)], [(1,5) to (1,8)], [(2,8) to (6,8)] and
[(8,4) to (1,4)], [(1,3) to (1,0)], [(2,0) to (6,0)]

abstract data types are really cool would be found at:
[(8,4) to (1,4)], [(1,3) to (1,0)], [(2,0) to (6,0)], [(7,0) to (9,0)], [(9,1) to (9,6)], [(8,6) to (5,6)]

abstract data types are really awesome would not be found

Details: Your task is to write a Java program to read in a grid of letters from a file, and then interactively allow a user to enter phrases until he or she wants to quit. For each phrase your program must output whether or not the phrase is found and, if found, specifically where it is located.

Input Details:

The grid of letters for your program will be stored in a text file formatted as follows:

Line 1: Two integers, R and C, separated by a single blank space. These will represent the number of rows, R and columns, C, in the grid.
Remaining lines: R lines containing C lower case characters each

The user input will be phrases of words, with a single space between each word and no punctuation. Each phrase will be entered on a single line. The user may enter either upper or lower case letters, but the string should be converted to lower case before searching the grid. The program will end when the user enters no data for the current phrase (i.e. hits <Enter> without typing any characters beforehand).

Output Details:

If a phrase is not found in the grid the output should simply state that fact.

If a phrase is found in the grid, your program must find one occurrence of the phrase, and the output must indicate this fact in two ways:

1) Show the coordinates of each word in the phrase as a pair of (row, column) pairs.
2) Show the grid with the letters of the phrase indicated in upper case

For example, for the grid above and the phrase "abstract data types" your output would be:

abstract: (8,4) to (1,4)
data: (1,5) to (1,8)
types: (2,8) to (6,8)

a b s t r a c t i j
a t a d T D A T A j
t b c d C a g h T j
y b c d A t g h Y j
p b c d R a g h P j
e b c d T f l h E j
s a r e S f o h S j
a r e d B f o h a j
r b c d A f c h r j
e r e a l l y r e j

Algorithm Details:

Your search algorithm must be a recursive, backtracking algorithm. Note that you do not need recursion to match the letters within individual words (although you may do this recursively if you prefer). Where the recursion is necessary is when moving from one word to the next - since it is here where you may change direction. To make the program more consistent (and easier to grade), we will have the following requirements for the recursive process:

1) No letter / location on the grid may appear more than one time in any part of a solution.

2) When given a choice of directions, the options must be tried in the following order: right, down, left, up. Given this ordering and the grid above, the solution for "abstract data" would be [(8,4) to (1,4)], [(1,5) to (1,8)] rather than [(8,4) to (1,4)], [(1,3) to (1,0)], since the "right" direction is tried before the "left" direction.

3) If the last letter in a word is at location (i, j), the first letter of the next word must be at one of locations (i, j+1), (i+1, j), (i, j-1), or (i-1, j).

4) The direction chosen to find the first letter of a word is the same direction that must be used for all of the letters of the word. For example, in the grid shown above, for the phrase "abstract data", the following would NOT be a valid solution: [(8,4) to (1,4)], [(1,5) to (4,5)]. This solution is not legal because we proceeded right from the "T" of "abstract" to find the "D" in "data", but then proceeded down to find the remaining letters in "data". Similarly, also in the grid shown above, for the phrase "abstract data types are", the following would NOT be a valid solution: [(8,4) to (1,4)], [(1,3) to (1,0)], [(2,0) to (6,0)], [(7,0) to (7,2)]. This solution is not legal because we proceeded down from the "S" of "types" to find the "A" in "are", but then proceeded right to find the remaining letters in "are".

The idea is that you are building a solution word by word. Each time you complete a word, you can look for the "next" word in any of the four directions - this is where the recursion occurs. If the "next" word cannot be found in any of the directions, you must delete the most recently completed word and backtrack to the previous word.

For example, consider the board above with the search phrase "data types are really". The algorithm first tries to find the word "data" starting at position (0,0). It tries in all four directions and does not succeed. It proceeds through the other starting positions until it finds "data" in locations [(1,3) to (1,0)].

It now recursively tries to find "types" in the following ways:

Going right to position (1,1) - this will not work since (1,1) is already being used in "data"
Going down to position (2, 0) - this will succeed and "types" is found in locations [(2,0) to (6,0)].
The algorithm now recurses again, this time looking for "are" in the following ways:
Going right to position (6,1) - this will succeed and "are" is found in locations [(6,1) to (6,3)].
The algorithm now recurses again, this time looking for "really" in the following ways:
Going right to position (6,4) - this will not work since character (6,4) is an "s"
Going down to position (7,3) - this will not work since character (7,3) is a "d"
Going left to position (6,2) - this will not work since (6,2) is already being used in "are"
Going up to position (5,3) - this will not work since character (5,3) is a "d"
Since all directions have been tried, the search for "really" has failed and the algorithm must backtrack.
The word "are" is removed and the previous search for "are" resumes
Going down to position (7,0) - this will succeed and "are" is found in locations [(7,0) to (9,0)].
The algorithm now recurses again, this time looking for "really" in the following ways:
Going right to position (9,1) - this will succeed and "really" is found in locations [(9,1) to (9,6)].
The last word in the phrase has been found and the algorithm succeeds

Clearly, more backtracking may be necessary in other situations. I recommend tracing through the process with some example phrases before you start coding your solution.

A non-trivial part of this assignment is keeping track of the "path" of the solution and printing the path out once the solution has been found. You will likely need to use some data structure to store / update this path. Think carefully how you can do this part of the assignment.

Test Files:

I have placed several test files and some sample output online. See the CS 0445 Assignments page for these files and make sure that your program works correctly for all of the sample files.

Help:

If you are having trouble with recursion and backtracking, the program FindWord.java may be of help to you. This program finds individual words in a grid of characters using recursion and backtracking. It recurses on individual characters rather than on words, but the recursive process is similar in both programs. See also test file findWord1.txt. Important Note: The code from FindWord.java to read in and set up the grid can be taken and used directly in your program if you wish. However, you should NOT use the recursive part of FindWord directly in your program since it is not solving the problem you are trying to solve. Further, you should not use this code to find individual words in your grid since FindWord allows directions to change within a single word, whereas in your assignment you are only allowed to change directions between words. See additional comments in the FindWord.java code.

Submission:

Make sure you submit all of the following in a single .zip file:

1) All source files that you either wrote or utilized (ex: from the author's files). Call your main program file Assig3.java.
2) All data files
3) Your completed Assignment Information Sheet

As with Assignments 1 and 2, the idea from your submission is that your TA can compile and run your programs WITHOUT ANY additional files, so be sure to test them thoroughly before submitting them. If you use an IDE for development, make sure your program runs from the command line without the IDE before submitting it. If you cannot get the program working as specified, clearly indicate any changes you made and clearly indicate why, so that the TA can best give you partial credit.

Idea: Allow your program to recurse diagonally as well as horizontally and vertically. If you do this you will need to make up your own test files to demonstrate that your program works correctly.

Reference no: EM131436318

Questions Cloud

Amazons big data strategy : Using the case, "Amazon's Big Data Strategy" Please Identify Amazons Business Level Strategy i.e. Competitive Strategy, Marketing, and other areas that drive the organization.
Lean production is large-scale employee involvement : A principal feature of lean production is large-scale employee involvement and employee empowerment. What do these concepts mean? Why in practice are they considered somewhat radical in the United States organizations when they are accepted as common..
Most important metrics for operations managers : Prompt: Develop a listing of what you believe are the most important metrics for operations managers. (Hint: Be sure to consider the triple bottom line.) How does each metric support the overall financial performance of the organization? What data wo..
How might cultural differences impact human resources : What types of stress displays by employees could lead to safety issues? Any examples and what should be the course of action taken by management? How might cultural differences impact human resources, both domestically and locally? Please discuss if ..
Show the grid with the letters of the phrase indicated : Show the coordinates of each word in the phrase as a pair of (row, column) pairs. Show the grid with the letters of the phrase indicated in upper case.
Is any difference in population variance of saccharin amount : Conduct the appropriate test to determine whether there is any difference in the population variance of saccharin amounts. Use a = 0.02.
Travel and transportation : Is there any evidence to suggest that the mean amount of corrosive material carried by trucks in North Carolina is different from the mean amount of corrosive material carried by trucks in Virginia?
Difference between individual and organizational ethics : What is the difference between individual and organizational ethics? Why is it important that we understand that difference in a business environment? What are some of the reasons why breakdowns can occur during the decision implementation stage?
How will each event affect the amount of cash : How will each of the following events ultimately affect the amount of cash? (a) An increase in the level of inventories. (b) A rights issue of ordinary shares. (c) A bonus issue of ordinary shares. (d) Writing off part of the value of some inventorie..

Reviews

Write a Review

Computer Engineering Questions & Answers

  You have just been hired as an information security

you have just been hired as an information security engineer for a large multi-international corporation.

  Design e-r tables for keeping track of the exploits

Design E-R tables for keeping track of the exploits of your favorite sports team. You should store the matches played, the scores in each match, the players in each match, and individual player statistics for each match.

  Communication diagram and sequence diagram

Why you would generate a communication diagram in place of a sequence diagram? Describe what the arrow which points to an object in the communication diagram implies.

  Edwin went to the library to learn more regarding a

edwin went to the library to learn more about a particular theory which attempts to explain the types of communication

  Change in behavior that occurs as a result of experience

Give an instance of such a "lesson" that helped you to improve your job performance. Try to generalize this isolated experience of yours into a "training method" that would help others to improve their performance as well.

  Backgroundjulia and robert have made progress in the

backgroundjulia and robert have made progress in the development of a strategic plan for kahuna cleaning supply. robert

  Assignment cores on computer systemssingle-processor

assignment cores on computer systemssingle-processor computers were able to handle and process smaller sets of data.

  Find all irreducible polynomials

The best approach for doing this is to consider all polynomials of lower degree and check whether they are factors. Please note that we only consider monic irreducible polynomials, i.e., polynomials with the highest coefficient equal to one.

  How to calculate federal and fica taxes withheld

how to calculate federal and fica taxes withheld.

  What combination of a and b will maximize contribution

What combination of A and B will maximize contribution, and what is the maximum possible contribution

  Draw a functional block diagram of the light-pupil system

Draw a functional block diagram of the light-pupil system indicating the input, output, and intermediate signals; the sensor; the controller; and the actuator.

  Develop a plan on how to support a business

Develop a plan on how to support a business need with software, this software will have data points that we need to map.

Free Assignment Quote

Assured A++ Grade

Get guaranteed satisfaction & time on delivery in every assignment order you paid with us! We ensure premium quality solution document along with free turntin report!

All rights reserved! Copyrights ©2019-2020 ExpertsMind IT Educational Pvt Ltd