摘要: 栈-stack(A pile of things) 定义:栈是一种只能在一端进行插入或删除操作的线性表。 特点:先进后出(First In,Last Out--FILO) 1.顺序栈: 栈的实现: int stack[maxSize]; int top = -1 元素入栈: stack[++top] 阅读全文
posted @ 2018-11-19 15:43 dalyday 阅读(266) 评论(0) 推荐(0) 编辑