队列
牧儿
Hope is a good thing,maybe the best of things.And no good thing ever dies!
展开
-
用链表生成一个队列
package 队列; /** * 定义一个结点 * @author Administrator * */class Node{Node next = null;Integer data;public Node(Integer data){this.data = data;}} /** * 用链表创建一个队列 * @author Administrator * */public class Que...原创 2018-04-26 17:30:08 · 343 阅读 · 0 评论 -
两个队列生成一个栈
package 队列; /** * 两个队列实现一个栈 * * 思路:队列1和队列2在任意时刻至少有一个为空,即如果有元素,所有元素只能在一个队列中。当有元素需要插入时,将元素插入到 * 空队列中,并将另一非空队列的所有元素全部转移到该队列中,于是,插入的元素添加到了对列的最前面 * * @author Administrator * */public class Stack {Queue q...原创 2018-04-26 17:33:13 · 300 阅读 · 0 评论