Question 1. This question involves reasoning about strings made up of uppercase letters. You will implement two related methods that appear in the same class (not shown). The first method takes a single string parameter and returns a scrambled version of that string. The second method takes a list of strings and modifies the list by scrambling each entry in the list. Any entry that cannot be scrambled is removed from the list.
Part b. Write the method scrambleOrRemove, which replaces each word in the parameter wordList with its scrambled version and removes any words that are unchanged after scrambling. The relative order of the words in wordList remains the same as before the call to scrambleOrRemove.
Assume that the method scrambleWord works as intended and is in the same class. It will return the scrambled word or the same word. You will write the scrambleOrRemove method to replace each original word with the scrambled word or remove the word if it was not scrambled.
import java.util.List;
public class ScrambledStrings
{
/**
* Modifies wordList by replacing each word with its scrambled version,
* removing any words that are unchanged as a result of scrambling.
*
* @param wordList the list of words Precondition: wordList contains only
* non-null objects Postcondition: - all words unchanged by scrambling have
* been removed from wordList - each of the remaining words has been
* replaced by its scrambled version - the relative ordering of the entries
* in wordList is the same as it was before the method was called
*/
public static void scrambleOrRemove(List<String> wordList)
{
/* to be implemented in part b */
}
}
Subsection4.35.1How to solve this problem
Activity4.35.1.
Explain in plain English what your code will have to do to answer this question. Use the variable names given above.
This section contains a plain English explanation of one way to solve this problem as well as problems that test your understanding of how to write the code to do those things.
In the example the first word (at index 0) TAN is scrambled and replaced. The second word ABRACADABRA (at index 1) is scrambled and replaced. The third word WHOA (at index 2) is removed. The fourth word APPLE (at index 3) is scrambled and replaced. The fifth word EGGS (at index 4) is removed since the scrambled word is the same as the original. What method of List allows you to replace an element in a list? What method of list allows you to remove an element from a list? How can you loop through a list and not always increment the current index?
There are many ways to use loops to solve this problem. If we were to use a while loop, what conditional could we write to make sure the loop does not go out of bounds? (Assume an integer index has already been initialized).
You can also use a for loop to solve this problem instead of a while loop. what conditional could we write to make sure the loop does not go out of bounds?
Loop through the list and scramble the current word. If the scrambled word and original are equal then remove the word from the list and otherwise replace it. We will have to be careful since the size of the list can change in the loop. If we remove an element all the other elements will shift left. We will only want to increment the index if the word was replaced and not removed. There are many ways to solve this problem but we have outlined 2 in the following optional questions. If you feel that you are ready to solve the problem, please skip ahead to the active code block.
public static void scrambleOrRemove(List<String> wordList)
initialize index counter
while (index less than wordlist size)
initialize a string and set it equal to word in wordList at index
initialize another string and set it equal to the scrambled version
of the word in wordlist at index
if (the normal string equals the scrambled string)
remove the word in wordList at the current index
else
reassign the current word in wordList to be the scrambled version
iterate the index
Activity4.35.8.
The method test below contains the correct code for one solution to this problem, but it is mixed up. Drag the needed code from the left to the right and put them in order with the correct indention so that the code would work correctly.
public static void test(List<String> wordList)
{
---
int i = 0;
while (i < wordList.size())
{
---
String current = wordList.get(i);
String scrambled = scrambleWord(current);
---
if (scrambled.equals(current))
---
wordList.remove(i);
---
else
{
---
wordList.set(i,scrambled);
---
i++;
---
} // end else
---
} // end while
---
} // end method
Another way to solve this problem is to start at the end of the list and loop towards the front of the list. That way you donβt have to worry about the index being off if you remove an item from the list.
public static void scrambleOrRemove(List<String> wordList)
for( int i = wordList size - 1; i >= 0; i--)
initialize a string and set it equal to word in wordList at index
initialize another string and set it equal to the scrambled version
of the word in wordlist at index
if (the normal string equals the scrambled string)
remove the word in wordList at the current index
else
reassign the current word in wordList to be the scrambled version
iterate the index
Activity4.35.9.
The method test below contains the correct code for another solution to this problem, but it is mixed up. Drag the needed code from the left to the right and put them in order with the correct indention so that the code would work correctly.