Java Program: Write a method called queuesCommonCount to be included in the class queueEx that accepts two parameters q1 and q1 of type ArrayQueue. The method finds the number of elements, which are common in q1 and q2 and returns this number. Class ArrayQueue and all its methods are available for use. Use iterator to access elements of q1. Do not use any iterator to access the elements of q2. You can use a temporary queue in your method. Example: q1:  10   5   12    7   11   15   20 q2:  14   9   7    20   10   12   18    20      The method will return 4 as 4 elements, namely 10, 12, 7 and 20 of q1 and q2 are same. public class QueueEx {   public static int queuesCommonCount(ArrayQueue q1, ArrayQueue<

C++ Programming: From Problem Analysis to Program Design
8th Edition
ISBN:9781337102087
Author:D. S. Malik
Publisher:D. S. Malik
Chapter18: Stacks And Queues
Section: Chapter Questions
Problem 16PE: The implementation of a queue in an array, as given in this chapter, uses the variable count to...
icon
Related questions
Question

a Java Program:

Write a method called queuesCommonCount to be included in the class queueEx that accepts two parameters q1 and q1 of type ArrayQueue. The method finds the number of elements, which are common in q1 and q2 and returns this number. Class ArrayQueue and all its methods are available for use. Use iterator to access elements of q1. Do not use any iterator to access the elements of q2. You can use a temporary queue in your method.

Example:

q1:  10   5   12    7   11   15   20

q2:  14   9   7    20   10   12   18    20   

 

The method will return 4 as 4 elements, namely 10, 12, 7 and 20 of q1 and q2 are same.

public class QueueEx

{

  public static<E> int queuesCommonCount(ArrayQueue<E> q1, ArrayQueue<E> q2)

{

Expert Solution
steps

Step by step

Solved in 4 steps with 1 images

Blurred answer
Knowledge Booster
Concept of Threads
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
  • SEE MORE QUESTIONS
Recommended textbooks for you
C++ Programming: From Problem Analysis to Program…
C++ Programming: From Problem Analysis to Program…
Computer Science
ISBN:
9781337102087
Author:
D. S. Malik
Publisher:
Cengage Learning