Question: In JAVASCRIPT please: 1) Add a method to the Queue class print() to print the contents starting with the head. Eg: que.insert(3); que.insert(4); que.insert(5); que.print();

In JAVASCRIPT please:

1) Add a method to the Queue class print() to print the contents starting with the head. Eg: que.insert(3); que.insert(4); que.insert(5); que.print(); //would print 3 4 5

2) Write a method public static Object removeSecond (): It removes and returns the element just behind the front element. Precondition: The queue has at least two elements. Eg: que.insert(3); que.insert(4); que.insert(5); que.insert(6); que.removeSecond(); que.print() //would print 3 5 6

class QueueTest { public static void main(String[] args) { Queue theQueue = new Queue(10); theQueue.insert(10); theQueue.insert(20); theQueue.insert(30); theQueue.insert(40); theQueue.print(); theQueue.removeSecond(); System.out.println("After removeSecond()"); theQueue.print(); } }

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!