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
Knowledge Booster
Background pattern image
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