2015年3月23日

用两个栈实现对列

摘要: 1.队列:先进先出(FIFO) 2.栈:后进先出(LIFO) package test.my.chap0302;import java.util.Stack;public class QueueWithTwoStack { private Stack stack1 = new Stack(... 阅读全文

posted @ 2015-03-23 10:10 Msea 阅读(151) 评论(0) 推荐(0) 编辑

导航