首页 > TAG信息列表 > myLinkedQueue
Java手写实现链表队列和数组队列【数据结构与算法】
package algorithm; /** @author Administrator @date 2022-09-13 17:50 */ public class QueueLinked{ private static class Node{ E item; Node next; public Node(E item, Node<E> next) { this.item = item; this.next = next; } } private Node head;