Question

In: Computer Science

import java.io.BufferedReader; import java.io.IOException; import java.io.InputStreamReader; import java.util.HashMap; import java.util.TreeSet; /** * MapSetLab - test the...

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.HashMap;
import java.util.TreeSet;

/**
 * MapSetLab - test the HashMap and TreeSet classes.
 * 
 * @author Michael Norton
 * @version 18 September 2018
 */
public class MapSetLab {
    
    /**
     * Main method.
     * 
     * @param args The command line arguments
     * @throws IOException The IOException
     */
    public static void main( String[] args ) throws IOException {
        
        // declarations & some instantiations
        BufferedReader reader = new BufferedReader( new InputStreamReader( 
                        System.in ) );
        HashMap< String, TreeSet< String > > networkMap = 
                        new HashMap< String, TreeSet< String> >();

        // reusable references
        String network;
        String tvShow;
        TreeSet< String > set;
        
        // get 10 network & tv show pairs
        for ( int i = 0; i < 10; i++ ) {
            
            // get values from user
            System.out.print(  "Enter TV network: " );
            network = reader.readLine();
            System.out.print( "Enter TV show on " + network + ": " );
            tvShow = reader.readLine();
            
            // if key not found, create new entry
            if ( !networkMap.containsKey( network ) ) {
                
                networkMap.put( network, new TreeSet<String>() );
            }
            
            // get the TreeSet from the HashMap and add the show to the network
            set = networkMap.get( network );
            set.add( tvShow );
            
            // print out the mapping
            System.out.println( networkMap );
            System.out.println();
        }
        
    }

}

Use an appropriate loop to ask the user to enter the name of a TV show and then print on a separate line the name of the network that maps to that show. Repeat until the user enters an empty string.

HINT: Iterate over each key (network) in the HashMap, and see if its value (set of shows) contains the desired show. If so, print out the network. If none of the networks have that show, report "UNKNOWN". You don't have to worry about uppercase/lowercase, just match the TV show name exactly.

Solutions

Expert Solution

import java.io.BufferedReader;

import java.io.IOException;

import java.io.InputStreamReader;

import java.util.HashMap;

import java.util.TreeSet;

/**

* MapSetLab - test the HashMap and TreeSet classes.

*

* @author Michael Norton

* @version 18 September 2018

*/

public class MapSetLab {

       /**

     * Main method.

     *

     * @param args The command line arguments

     * @throws IOException The IOException

     */

      

       public static void main(String[] args) throws IOException {

                // declarations & some instantiations

        BufferedReader reader = new BufferedReader( new InputStreamReader(

                        System.in ) );

        HashMap< String, TreeSet< String > > networkMap =

                        new HashMap< String, TreeSet< String> >();

        // reusable references

        String network;

        String tvShow;

        TreeSet< String > set;

       

     // get 10 network & tv show pairs

        for ( int i = 0; i < 10; i++ ) {

           

            // get values from user

            System.out.print( "Enter TV network: " );

            network = reader.readLine();

            System.out.print( "Enter TV show on " + network + ": " );

            tvShow = reader.readLine();

           

            // if key not found, create new entry

            if ( !networkMap.containsKey( network ) ) {

               

                networkMap.put( network, new TreeSet<String>() );

            }

           

            // get the TreeSet from the HashMap and add the show to the network

            set = networkMap.get( network );

            set.add( tvShow );

           

            // print out the mapping

            System.out.println( networkMap );

            System.out.println();

           

        }

       

        boolean found ;

        // loop that continues till the user exits

        while(true)

        {

             found = false;

             // input of tv show name

             System.out.print("Enter the TV show name : ");

             tvShow = reader.readLine();

             // check if user entered an empty string, then exit from loop

             if(tvShow.length() == 0)

                    break;

             // loop over the map

             for( String tvNetwork: networkMap.keySet())

             {

                    // check if this network contains the tv show, then print the network and exit from loop

                    if(networkMap.get(tvNetwork).contains(tvShow))

                    {

                           System.out.println(tvNetwork);

                           found=true;

                           break;

                    }

             }

            

             // check if tv show network was found, if not print "UNKNOWN"

             if(!found )

                    System.out.println("UNKNOWN");

        }

       

        reader.close();

       }

}

//end of MapSetLab.java

Output:


Related Solutions

HW1 code sample.fxml <?import javafx.geometry.Insets?> <?import javafx.scene.layout.GridPane?> <?import javafx.scene.control.Button?> <?import javafx.scene.control.Label?> <?import javafx.scene.layout.ColumnConstraints?> &lt
HW1 code sample.fxml <?import javafx.geometry.Insets?> <?import javafx.scene.layout.GridPane?> <?import javafx.scene.control.Button?> <?import javafx.scene.control.Label?> <?import javafx.scene.layout.ColumnConstraints?> <?import javafx.scene.control.TextField?> <?import javafx.scene.layout.HBox?> <?import javafx.scene.control.ToggleGroup?> <?import javafx.scene.control.RadioButton?> <?import javafx.scene.control.CheckBox?> <?import javafx.scene.control.ComboBox?> <?import javafx.collections.*?> <?import java.lang.String?> <?import javafx.collections.FXCollections?> <?import javafx.collections.FXCollections?> <?import javafx.scene.text.Font?> <GridPane fx:controller="sample.Controller" xmlns:fx="http://javafx.com/fxml" alignment="TOP_CENTER" hgap="10" vgap="10"> <columnConstraints> <ColumnConstraints percentWidth="50"/> <ColumnConstraints percentWidth="50"/> </columnConstraints> <padding> <Insets topRightBottomLeft="5"/> </padding> <Label GridPane.rowIndex="0" GridPane.columnIndex="0" text="Name"> </Label> <Label GridPane.rowIndex="1" GridPane.columnIndex="0" text="Street" > </Label> <Label GridPane.rowIndex="2" GridPane.columnIndex="0" text="City"> </Label> <Label GridPane.rowIndex="3" GridPane.columnIndex="0" text="State" > </Label> <Label GridPane.rowIndex="4" GridPane.columnIndex="0" text="Zip" > </Label> <Label...
In Java please Cipher.java: /* * Fix me */ import java.util.Scanner; import java.io.PrintWriter; import java.io.File; import...
In Java please Cipher.java: /* * Fix me */ import java.util.Scanner; import java.io.PrintWriter; import java.io.File; import java.io.FileNotFoundException; import java.io.IOException; public class Cipher { public static final int NUM_LETTERS = 26; public static final int ENCODE = 1; public static final int DECODE = 2; public static void main(String[] args) /* FIX ME */ throws Exception { // letters String alphabet = "abcdefghijklmnopqrstuvwxyz"; // Check args length, if error, print usage message and exit if (args.length != 3) { System.out.println("Usage:\n"); System.out.println("java...
App is crashing at startup? Any idea? Thanks! import androidx.appcompat.app.AppCompatActivity; import android.os.Bundle; import android.view.View; import android.widget.Button;...
App is crashing at startup? Any idea? Thanks! import androidx.appcompat.app.AppCompatActivity; import android.os.Bundle; import android.view.View; import android.widget.Button; import android.widget.EditText; import android.widget.TextView; import java.util.ArrayList; import java.util.Random; public class MainActivity extends AppCompatActivity { private EditText teamOneText; private EditText teamTwoText; private Button selectButton; private TextView resultView; Random r = new Random(); ArrayList<EditText> editTextList = new ArrayList<>(); ArrayList<String> editTextValues = new ArrayList<>(); @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); editTextList.add(teamOneText); editTextList.add(teamTwoText); for(int i=0;i<editTextList.size();i++){ editTextValues.add(editTextList.get(i).getText().toString()); } teamOneText = findViewById(R.id.team_one); teamTwoText = findViewById(R.id.team_two); resultView = findViewById(R.id.result_view);...
Download labSerialization.zip and unzip it: ListVsSetDemo.java: package labSerialization; import java.util.ArrayList; import java.util.Arrays; import java.util.HashSet; import java.util.List;...
Download labSerialization.zip and unzip it: ListVsSetDemo.java: package labSerialization; import java.util.ArrayList; import java.util.Arrays; import java.util.HashSet; import java.util.List; import java.util.Set; /** * Demonstrates the different behavior of lists and sets. * Author(s): Starter Code */ public class ListVsSetDemo { private final List<ColoredSquare> list; private final Set<ColoredSquare> set; /** * Initializes the fields list and set with the elements provided. * * @param elements */ public ListVsSetDemo(ColoredSquare... elements) { list = new ArrayList<>(Arrays.asList(elements)); set = new HashSet<>(Arrays.asList(elements)); } /** * Creates a string...
import java.util.*; import java.security.*; import javax.crypto.*; import java.nio.file.*; public class CryptoApp {    public static void...
import java.util.*; import java.security.*; import javax.crypto.*; import java.nio.file.*; public class CryptoApp {    public static void main(String[] args) throws Exception { Crypto crypto = new BasicCrypto();        String welcome = "Hello 2043-er's! Let's try this again :-)"; System.out.println(welcome); // First, where are we? //Let's print out our current working directory        Path cwd = FileSystems.getDefault().getPath("").toAbsolutePath(); System.out.println("Current Working Directory: " + cwd); // Read in our file to encrypt    byte[] originalData = Files.readAllBytes(Paths.get(System.getProperty("user.home"), "C-2044-Sample/Crypto/src/encrypt.txt")); // Encrypt it and...
import java.util.LinkedList; import java.util.Queue; import java.time.*; public class CheckOutLine { /** This is the main function...
import java.util.LinkedList; import java.util.Queue; import java.time.*; public class CheckOutLine { /** This is the main function for the program */ public static void main() { System.out.println("\n\tBegin CheckOutLine Demo\n"); System.out.println("\nCreating a Queue called \"register\" based on a LinkedList"); Queue<Customer> register = new LinkedList<Customer>();    System.out.println("\nAdding Customers to the Register queue"); // 1. TO DO: add five or more customers to the register line (5 Pts) // format: register.add(new Customer(name, checkout time));                System.out.printf("Register line has %d customers\n",...
This is Java Programing. Add a shape of oval to BOXBALLOVAL. import java.awt.*; import java.awt.event.*; import...
This is Java Programing. Add a shape of oval to BOXBALLOVAL. import java.awt.*; import java.awt.event.*; import java.util.*; import java.util.Timer; import javax.swing.*; public class BOXBALLOVAL {    public static void main(String[] args) { new myframe();// creating main jframe instance    } } class myframe extends JFrame {    Container c;    JPanel panel;    JButton addbutton, removebutton;    JLabel counter, ballsize;    JTextField size_input;    JComboBox cb;    buttonListener handle;    myDrawboard myboard;    JFrame mainFrame;    public myframe()    {...
import java.util.ArrayList; import java.util.Collections; import java.lang.Exception; public class ItemList { /** This is the main process...
import java.util.ArrayList; import java.util.Collections; import java.lang.Exception; public class ItemList { /** This is the main process for the project */ public static void main () { System.out.println("\n\tBegin Item List Demo\n"); System.out.println("Declare an ArrayList to hold Item objects"); ArrayList<Item> list = new ArrayList<Item>(); try { System.out.println("\n Add several Items to the list"); list.add(new Item(123, "Statue")); list.add(new Item(332, "Painting")); list.add(new Item(241, "Figurine")); list.add(new Item(126, "Chair")); list.add(new Item(411, "Model")); list.add(new Item(55, "Watch")); System.out.println("\nDisplay original Items list:"); listItems(list); int result = -1; // 1....
import java.util.ArrayList; import java.util.Collections; import java.lang.Exception; public class ItemList { /** This is the main process...
import java.util.ArrayList; import java.util.Collections; import java.lang.Exception; public class ItemList { /** This is the main process for the project */ public static void main () { System.out.println("\n\tBegin Item List Demo\n"); System.out.println("Declare an ArrayList to hold Item objects"); ArrayList list = new ArrayList(); try { System.out.println("\n Add several Items to the list"); list.add(new Item(123, "Statue")); list.add(new Item(332, "Painting")); list.add(new Item(241, "Figurine")); list.add(new Item(126, "Chair")); list.add(new Item(411, "Model")); list.add(new Item(55, "Watch")); System.out.println("\nDisplay original Items list:"); listItems(list); int result = -1; // 1....
import java.util.Scanner; public class test {    public static void main(String args[]){        char letter;...
import java.util.Scanner; public class test {    public static void main(String args[]){        char letter;        int number = 0;        Scanner in = new Scanner(System.in);        System.out.print("Enter a letter: ");        letter = in.next().charAt(0);        if(letter == 'A' || letter == 'B' || letter == 'C') number = 2;        if(letter == 'D' || letter == 'E' || letter == 'F') number = 3;        if(letter == 'G' || letter ==...
ADVERTISEMENT
ADVERTISEMENT
ADVERTISEMENT