Building Java Programs: A Back To Basics Approach (5th Edition)
Building Java Programs: A Back To Basics Approach (5th Edition)
5th Edition
ISBN: 9780135471944
Author: Stuart Reges, Marty Stepp
Publisher: PEARSON
Expert Solution & Answer
Book Icon
Chapter 11, Problem 20E

Explanation of Solution

Modified class “Vocabulary” that uses “Set” instead of “ArrayList”:

//Import required packages

import java.util.*;

import java.io.*;

//Definition of class Vocabulary

public class Vocabulary {

    //Definition of main method

    public static void main(String[] args)

    throws FileNotFoundException

    {

        //Create an object for scanner class

        Scanner sc = new Scanner(System.in);

        //Call the method printIntro()

        printIntro();

        //Get the first file name

        System.out.print("file #1 name? ");

        String filename1 = sc.nextLine();

        //Create an object for scanner class

Scanner file1 = new Scanner(new File(filename1));

        //Get the second file

        System.out.print("file #2 name? ");

        String filename2 = sc.nextLine();

        //Create an object for scanner class

Scanner file2 = new Scanner(new File(filename2));

        System.out.println();

        //Create an object for set

        Set<String> set1 = getWordsFromFile(file1);

        Set<String> set2 = getWordsFromFile(file2);

        Set<String> overlap = new TreeSet(set1);

        //Call the method retainAll

        overlap.retainAll(set2);

        //Call the method Result

        Result(set1, set2, overlap);

    }

    //Definition of method getWordsFromFile

public static Set<String> getWordsFromFile(Scanner input) {

    //Create an object for set

    Set<String> result = new TreeSet<String>();

    // read all words from the file

    while (input.hasNext()) {

        //Get the values and store it in val

        String val = input.next().toLowerCase();

        //Add the value to the result

        result...

Blurred answer
Students have asked these similar questions
MGMT SS STATS, an umbrella body that facilitates and serves various Social Security Organizations/Departments within the Caribbean territories, stood poised to meet the needs of its stakeholders by launching an online database. The database will provide members and the public access to the complete set of services that can (also) be initiated face-to-face, and it will provide managed, private, secure access to a repository of public and/or personal information. Ideally, the database will have basic details of pension plans recorded in the registry, member plan statistics, and cash inflows and outflows from pension funds.For example, insured persons accumulate contributions. Records for these persons will include information on the insured persons able to acquire various benefits once work is interrupted due to sickness, death, retirement, and maternity or employment injury. They will also include information on pensions such as invalidity, disability, and survivors that stem from one…
Why all appvif i want to sign in its required phone number why not using google or apple its make me frustrated
Why is the accuracy of time important in data visualizations? Detail a scenario from your professional experience in which time was structured poorly in a data visualization. How did this affect the understanding of the data presented? How do you think this error or oversight occurred?
Knowledge Booster
Background pattern image
Similar questions
SEE MORE QUESTIONS
Recommended textbooks for you
Text book image
Database System Concepts
Computer Science
ISBN:9780078022159
Author:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:McGraw-Hill Education
Text book image
Starting Out with Python (4th Edition)
Computer Science
ISBN:9780134444321
Author:Tony Gaddis
Publisher:PEARSON
Text book image
Digital Fundamentals (11th Edition)
Computer Science
ISBN:9780132737968
Author:Thomas L. Floyd
Publisher:PEARSON
Text book image
C How to Program (8th Edition)
Computer Science
ISBN:9780133976892
Author:Paul J. Deitel, Harvey Deitel
Publisher:PEARSON
Text book image
Database Systems: Design, Implementation, & Manag...
Computer Science
ISBN:9781337627900
Author:Carlos Coronel, Steven Morris
Publisher:Cengage Learning
Text book image
Programmable Logic Controllers
Computer Science
ISBN:9780073373843
Author:Frank D. Petruzella
Publisher:McGraw-Hill Education