When I try:
Queue q = new Queue();
the compiler is giving me an error. Any help?
Also, if I want to i
Queue qe=new LinkedList(); qe.add("b"); qe.add("a"); qe.add("c");
Since Queue is an interface, you can't create an instance of it as you illustrated