摘要: 1 package ren.laughing.datastructure.baseImpl; 2 3 import ren.laughing.datastructure.base.Queue; 4 import ren.laughing.datastructure.exception.QueueEmptyException; 5 /** 6 * 队列的链式存储 7 * 单链表... 阅读全文
posted @ 2016-04-07 20:23 回看欧洲 阅读(517) 评论(0) 推荐(0) 编辑
摘要: 队列的ADT: 循环队列的顺序存储实现,采用少一存储空间的方法: 循环队列的顺序存储实现,采用加标志size的方法: 阅读全文
posted @ 2016-04-07 17:08 回看欧洲 阅读(712) 评论(0) 推荐(0) 编辑
摘要: Stack的ADT: 栈的顺序存储: 栈的链式存储: 阅读全文
posted @ 2016-04-07 12:12 回看欧洲 阅读(331) 评论(0) 推荐(0) 编辑