摘要: 一、栈ADT是what? 1、定义 栈,是限制插入和删除都只能在一个位置上进行的表。 2、图示 3、栈的基本功能 (1)是否为空 (2)进栈 (3)出栈 (4)清空 (5)取栈顶 二、栈的链表实现 #ifndef Exercise_Stack_h #define Exercise_Stack_h t 阅读全文
posted @ 2014-08-17 15:53 Blue Mountain 阅读(585) 评论(0) 推荐(0)