import stack_queue.queue.impl.MyQueue; public class QueueTest { public static void main(String[] args) { IQueue iQueue=new MyQueue(); iQueue.offer(1); iQueue.offer(2); iQueue.offer(3); System.out.println(iQueue); System.out.println(iQueue.peek()); iQueue.poll(); System.out.pr...
IntegertailElement=null;// 创建一个变量用于存储队尾元素for(Integerelement:queue){tailElement=element;// 迭代过程中,不断更新tailElement为当前元素}// 这时候tailElement将是队列的最后一个元素// 检查是否成功取出队尾元素if(tailElement!=null){System.out.println("队尾元素为: "+tailElement);// 打印...