Building Java Programs: A Back To Basics Approach, Loose Leaf Edition (5th Edition)
Building Java Programs: A Back To Basics Approach, Loose Leaf Edition (5th Edition)
5th Edition
ISBN: 9780135472118
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
Find the voltage V0 across the 4K resistor using the mesh method or nodal analysis. Note: I have already simulated it and the value it should give is -1.714V
Resolver por superposicion
Describe three (3) Multiplexing techniques common for fiber optic links
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