Question

In the program below, Implement union. import java.util.*; public class SetExample2 { public static void main...

In the program below, Implement union.

import java.util.*;

public class SetExample2 {

    public static void main (String[] argv)
    {
        LinkedList<String> favoriteShows1 = new LinkedList<String>();
        favoriteShows1.add ("Yes minister");
        favoriteShows1.add ("Seinfeld");
        favoriteShows1.add ("Cheers");
        favoriteShows1.add ("Frasier");
        favoriteShows1.add ("Simpsons");

        LinkedList<String> favoriteShows2 = new LinkedList<String>();
        favoriteShows2.add ("Mad about you");
        favoriteShows2.add ("Seinfeld");
        favoriteShows2.add ("Frasier");
        favoriteShows2.add ("Cosby show");

        computeUnion (favoriteShows1, favoriteShows2);
    }

    // INSERT YOUR CODE HERE.

}
0 0
Add a comment Improve this question Transcribed image text
Answer #1

If you have any doubts, please give me comment...

import java.util.*;

public class SetExample2 {

public static void main (String[] argv)

{

LinkedList<String> favoriteShows1 = new LinkedList<String>();

favoriteShows1.add ("Yes minister");

favoriteShows1.add ("Seinfeld");

favoriteShows1.add ("Cheers");

favoriteShows1.add ("Frasier");

favoriteShows1.add ("Simpsons");

LinkedList<String> favoriteShows2 = new LinkedList<String>();

favoriteShows2.add ("Mad about you");

favoriteShows2.add ("Seinfeld");

favoriteShows2.add ("Frasier");

favoriteShows2.add ("Cosby show");

LinkedList<String> union = computeUnion (favoriteShows1, favoriteShows2);

System.out.println("Union of two lists is: "+union);

}

// INSERT YOUR CODE HERE.

public static LinkedList<String> computeUnion(LinkedList<String> list1, LinkedList<String> list2){

LinkedList<String> list = new LinkedList<String>();

for(int i=0; i<list1.size(); i++){

list.add(list1.get(i));

}

for(int i=0; i<list2.size(); i++){

if(!list.contains(list2.get(i)))

list.add(list2.get(i));

}

return list;

}

}

nagarajuanagaraju-Vostro-3550:~/Desktop/CHEGG/october/30102018$ javac SetExample2.java nagaraju@nagaraju-Vostro-3550:~/Desktop/CHEGG/october/30102018$ java SetExample2 Union of two lists is: [Yes minister, Seinfeld, Cheers, Frasier, Simpsons, Mad about you, Cosby show]

Add a comment
Know the answer?
Add Answer to:
In the program below, Implement union. import java.util.*; public class SetExample2 { public static void main...
Your Answer:

Post as a guest

Your Name:

What's your source?

Earn Coins

Coins can be redeemed for fabulous gifts.

Not the answer you're looking for? Ask your own homework help question. Our experts will answer your question WITHIN MINUTES for Free.
Similar Homework Help Questions
  • What is output 1 in the code below? import java.util."; public class StackDemo { public static...

    What is output 1 in the code below? import java.util."; public class StackDemo { public static void main(String [] args) { Stack<Integer> intStack = new Stack<>(); Stack<Integer> tempStack = new Stack<>(); intStack.push(18); intStack.push(21); intStack.push(25); tempStack = intStack; while (!tempStack.empty() { System.out.print(tempStack.peek()+"");//output 1 tempStack.pop(); 3 System.out.println(); System.out.println(intStack.peek()); //output 2 25 18 21 • 25 21 18

  • 1: import java.util.*; 2: class Test 3: { 4: public static void main(String[] args) 5: {...

    1: import java.util.*; 2: class Test 3: { 4: public static void main(String[] args) 5: { 6: ArrayList<Object> list = new ArrayList<Object>(); 7: list.add("First Element"); 8: list.add(new Integer(12)); 9: String str = (String) list.get(0); 10: String str2 = (String)list.get(1); 11: } 12: } There is a run time error on which line number? A) Line 9 B) Line 7 C) No errors D) Line 8 E) Line 10 in Java

  • import java.util.LinkedList; public class testprintOut { private static LinkedList[] array; public static void main(String[] args) {...

    import java.util.LinkedList; public class testprintOut { private static LinkedList[] array; public static void main(String[] args) { int nelems = 5; array = new LinkedList[nelems]; for (int i = 0; i < nelems; i++) { array[i] = new LinkedList<String>(); } array[0]=["ab"]; System.out.println(array[0]); } } //I want to create array of linked lists so how do I create them and print them out efficiently? //Syntax error on token "=", Expression expected after this token Also, is this how I can put them...

  • Consider the following sample program: import java.util.Scanner; public class Palindrome { public static void main(String[] args){...

    Consider the following sample program: import java.util.Scanner; public class Palindrome { public static void main(String[] args){ Scanner kb = new Scanner(System.in); System.out.println("Enter a word:"); String word = kb.next();    String reverse = ""; for (int i=word.length()-1; i>=0; i--) reverse += word.charAt(i); boolean result = reverse.equalsIgnoreCase(word);    if (result) System.out.println("The word " +word+ " is a Palindrome."); else System.out.println("The word " +word+ " is not a Palindrome."); } } Rewrite the program so that the main method is: public static void...

  • package com.snhu.sslserver; import org.springframework.boot.SpringApplication; import org.springframework.boot.autoconfigure.SpringBootApplication; @SpringBootApplication public class SslServerApplication { public static void main(String[] args)...

    package com.snhu.sslserver; import org.springframework.boot.SpringApplication; import org.springframework.boot.autoconfigure.SpringBootApplication; @SpringBootApplication public class SslServerApplication { public static void main(String[] args) { SpringApplication.run(SslServerApplication.class, args); } } //FIXME: Add route to enable check sum return of static data example: String data = "Hello World Check Sum!";

  • import java.util.*; public class Explorer2 { public static void main(String[] args) { TreeSet<Integer> s = new...

    import java.util.*; public class Explorer2 { public static void main(String[] args) { TreeSet<Integer> s = new TreeSet<Integer>(); TreeSet<Integer> subs = new TreeSet<Integer>(); for(int i = 606; i < 613; i++) if(i%2 == 0) s.add(i); subs = (TreeSet)s.subSet(608, true, 611, true); s.add(629); System.out.println(s + " " + subs); } }   What is the result? A. Compilation fails. B. An exception is thrown at runtime. C. [608, 610, 612, 629] [608, 610] D. [608, 610, 612, 629] [608, 610, 629] E. [606,...

  • Need help with the program DemoSugarSmash.java import java.util.*; public class DemoSugarSmash { public static void main(String[]...

    Need help with the program DemoSugarSmash.java import java.util.*; public class DemoSugarSmash { public static void main(String[] args) { // Complete the demo program here } } PremiumSugarSmashPlayer.java public class PremiumSugarSmashPlayer { // Define the PremiumSugarSmashPlayer class here } PremiumSugarSmashPlayer.java public class SugarSmashPlayer { private int playerID; private String screenName; private int[] scoresArray ; public SugarSmashPlayer() { this.scoresArray = new int[10]; } public SugarSmashPlayer(int levels) { this.scoresArray = new int[levels]; } public int getIdNumber() { return playerID; } public void setIdNumber(int...

  • I need a java flowchart for the following code: import java.util.*; public class Main {   ...

    I need a java flowchart for the following code: import java.util.*; public class Main {    public static void main(String[] args) {    Scanner sc=new Scanner(System.in);           System.out.print("Enter the input size: ");        int n=sc.nextInt();        int arr[]=new int[n];        System.out.print("Enter the sequence: ");        for(int i=0;i<n;i++)        arr[i]=sc.nextInt();        if(isConsecutiveFour(arr))        {        System.out.print("yes the array contain consecutive number:");        for(int i=0;i<n;i++)        System.out.print(arr[i]+" ");       ...

  • //LinkedList import java.util.Scanner; public class PoD {    public static void main( String [] args )...

    //LinkedList import java.util.Scanner; public class PoD {    public static void main( String [] args ) { Scanner in = new Scanner( System.in ); LinkedList teamList = new LinkedList(); final int TEAM_SIZE = Integer.valueOf(in.nextLine()); for (int i=0; i<TEAM_SIZE; i++) { String newTeamMember = in.nextLine(); teamList.append(newTeamMember); } while (in.hasNext()) { String removeMember = in.nextLine(); teamList.remove(removeMember); }    System.out.println("FINAL TEAM:"); System.out.println(teamList); in.close(); System.out.print("END OF OUTPUT"); } } =========================================================================================== //PoD import java.util.NoSuchElementException; /** * A listnked list is a sequence of nodes with...

  • Priority Queue Demo import java.util.*; public class PriorityQueueDemo {    public static void main(String[] args) {...

    Priority Queue Demo import java.util.*; public class PriorityQueueDemo {    public static void main(String[] args) {        //TODO 1: Create a priority queue of Strings and assign it to variable queue1               //TODO 2: Add Oklahoma, Indiana, Georgia, Texas to queue1                      System.out.println("Priority queue using Comparable:");        //TODO 3: remove from queue1 all the strings one by one        // with the "smaller" strings (higher priority) ahead of "bigger"...

ADVERTISEMENT
Free Homework Help App
Download From Google Play
Scan Your Homework
to Get Instant Free Answers
Need Online Homework Help?
Ask a Question
Get Answers For Free
Most questions answered within 3 hours.
ADVERTISEMENT
ADVERTISEMENT