Wordsplit printer material from lecture 09 will be helpful here. in

  WordSplitPrinter,  

WordSplit Printer Material from Lecture  09 will be helpful here. In lecture, we talked about how we can use  recursion exploration to print out all permutations of a given string.  For example, we could use recursion on the input “goat” to print out:  tgoa tgao toga goat gota gaot gato gtoa gtao ogat ogta oagt oatg otga  otag agot agto aogt aotg atgo atog toag tago taog Most of these aren’t  actual anagrams, because they’re gibberish. We could check which are  actual words (like “toga”), but that wouldn’t be enough. There are also  cases like “atgo” where the full string isn’t a word, but we can break  it into the separate words “at” and “go”. To find all anagrams, then, we  need to find the ways we can take one of these permutations and split  it into separate English words. That’s where your method,  findWordsplits, comes in: public void findWordSplits(String input,  TreeSet<String> allWords) { // TODO: Implement this. }   The method takes two parameters: input and allWords. input will be a  string like “atgo” or “goat” that you’re trying to split into separate  words. You do not need to find permutations of input, since that was  part of the demo we did in class. input will be a string whose character  ordering is already set. allWords is a set containing the words listed  in the “words.txt” file — nearly 10,000 English words. allWords is  already populated for you! You’ll need to use it when you’re splitting  up the input string, since each chunk needs to be an actual word. . Your  task is to implement findWordsSplits to find every way you can split  input into valid English words, where every character in input is used  exactly once. For example, if input is we would expect these two splits  to be printed: “goat”, go at goat Other arrangements, such as “g oat” or  “goat”, would not be printed because “g”, “goa”, and “t” are not  considered words. The main method uses “isawabus” as input. Once  findWordsSplits is correctly implemented, you should see the following  output: i saw a bus i saw ab us is aw a bus is aw ab us If the exact  ordering is not the same, that’s completely fine. I’ve provided an  already implemented method in the starter code called printWordsplit:  public void printWordSplit(ArrayList<String> words) { // Already  implemented for you. } You should call printWordSplit to print out a  single arrangement. For the “i saw a bus” example above, you would call  printWordSplit passing in an ArrayList<String> containing [“i”,  “saw”, “a”, “bus” ] to print it out. findWordSplits is a recursion  exploration problem, just like our permutations demo in lecture. Think  about how to apply the recursion exploration formula:   1. How do you represent a path of options you’re exploring? o  printWordsplit is a major hint — if you need an ArrayList<String>  to print a word split, that would also be a convenient way to represent  a path. 2. At each step, what are your options? o Consider an example  like “isawabus”. We can actually list out every possible option for the  next word: i is isa isaw isawa isawab isawabu isawabus Not all of these  are words, so you’ll need to check for yourself which ones are valid  options using the allWords set. The TreeSet<String> is just a  specific type of Set, so you can use any Set methods on it. 3. What do  you do when you’ve finished exploring a path? o Just call  printWordsplit! Another hint: in your implementation, you will need to  use the String’s substring method to split a string into two parts. • To  get a substring that contains the first i characters, use  str.substring(0, i) where str is the name of your String variable. To  get the rest of that string (i.e. everything other than the first i  characters), use str.substring(i). If you’re struggling to translate the  above into actual code, I strongly recommend revisiting Lecture 09 and  see how we applied the same formula to the permutations problem or the  password guessing problem. WordSplitChecker Material from Lecture 10  will be helpful here. If you were able to complete WordSplitPrinter,  then congratulations! You’ve already done most of the hard work for this  last step. In WordSplitChecker 

WordSplitPrinter.java

package edu.csc220.recursion;

import java.io.*;
import java.util.*;

public class WordSplitPrinter {
   /**
    * Finds and prints out every possible way to split the input String into individual, valid English words (including
    * if input is itself a single valid word). You must call printWordSplit below to actually print out the results.
    */
   public void findWordSplits(String input, TreeSet<String> allWords) {
       // TODO: Implement this.
   }

   /** Prints out a word split, i.e. one particular arrangement of words. This is implemented for you! */
   private void printWordSplit(ArrayList<String> words) {
       if (words.isEmpty()) {
           System.out.println("(empty word list)");
       } else {
           System.out.print(words.get(0));
           for (int i = 1; i < words.size(); i++) {
               System.out.print(" " + words.get(i));
           }
           System.out.println();
       }
   }

   public static void main(String[] args) {
       TreeSet<String> dictionary = readWords();
       WordSplitPrinter wordSplitPrinter = new WordSplitPrinter();

       // Expected to print out:
       // i saw a bus
       // i saw ab us
       // is aw a bus
       // is aw ab us
       wordSplitPrinter.findWordSplits("isawabus", dictionary);
   }

   // Reads the "words.txt" file and returns the words in a TreeSet<String>. This is completely implemented for you!
   private static TreeSet<String> readWords() {
       TreeSet<String> allWords = new TreeSet<>();
       try {
           BufferedReader bufferedReader = new BufferedReader(new FileReader("words.txt"));
           String line;
           while ((line = bufferedReader.readLine()) != null) {
               if (line.trim().isEmpty()) {
                   continue;
               }
               allWords.add(line.toLowerCase());
           }
           bufferedReader.close();
       } catch (IOException exception) {
           throw new RuntimeException(exception);
       }
       return allWords;
   }
}

Calculate your paper price
Pages (550 words)
Approximate price: -

Why Work with Us

Top Quality and Well-Researched Papers

We ensure that all instructions are followed meticulously to deliver exactly what you need. You can select your academic level— high school, college/university, or professional— and we will match you with a writer who holds the relevant degree for your task.

Professional and Experienced Academic Writers

Our team of professional writers brings extensive experience in both academic and business writing. Many of our writers are native speakers, ensuring high-quality work for any task you need assistance with.

Free Unlimited Revisions

If you feel something is missing, don’t worry—send your order for a free revision! You have 10 days to request a review after receiving your final document. Simply log into your personal account or contact our support team to initiate the revision process. We’re committed to ensuring your complete satisfaction!

Prompt Delivery and 100% Money-Back-Guarantee

We are committed to delivering all papers on time. Should we require additional time to ensure your paper meets the highest standards, we will reach out to discuss a deadline extension. If an extension is not possible, we offer a 100% refund guarantee to ensure your satisfaction.

Original & Confidential

We utilize advanced writing tools to ensure that every document you receive is free from plagiarism and AI-generated content. Our expert editors meticulously review all citations and references within the text for accuracy. Additionally, we guarantee the highest level of confidentiality with all of our services, ensuring your privacy is always protected.

24/7 Customer Support

Our support agents are available 24/7, dedicated to providing you with the best customer experience. Feel free to reach out anytime you need assistance—we’re here to help!

Try it now!

Calculate the price of your order

Total price:
$0.00

How it works?

Follow these simple steps to get your paper done

Place your order

Fill in the order form and provide all details of your assignment.

Proceed with the payment

Choose the payment system that suits you most.

Receive the final file

Once your paper is ready, we will email it to you.

Our Services

Choose peace of mind. Choose Superior Custom Writers—your trusted partner for stress-free academic success!

Essays

Essay Writing Service

No matter the type of academic paper you need or how urgent the deadline, we’ve got you covered! Choose your academic level and paper type, all at an affordable price. Our dedicated team handles all your paper needs while providing round-the-clock, 24/7 customer support for a seamless experience.

Admissions

Admission Essays Help

An admission essay is a critical component of your application, serving as a personal statement highlighting your unique qualities and aspirations for college, university, or graduate school. Our professional writing service,crafts an exceptional, compelling, and tailored admission essay that showcases your strengths and leaves a lasting impression. Let us help you stand out and secure your spot at your dream institution!

Reviews

Editing Support

Our team of expert academic writers and editors ensures your paper is thoroughly polished. We meticulously revise and refine your work, ensuring clarity and coherence. Additionally, we format your document according to your preferred style, including accurate citations and reference lists in APA, Harvard, MLA, Chicago, or Turabian formats.

Reviews

Revision Support

If you feel your paper could be improved, simply request a review. We will have the writer or an editor review your paper to ensure it meets your expectations. You can use this option as many times as needed, at no additional cost, because your satisfaction is our priority. We’re committed to delivering the best possible service, every time.