数据结构中的栈的存储结构
发布网友
发布时间:2022-03-28 00:55
我来回答
共1个回答
热心网友
时间:2022-03-28 02:25
(PASCAL)栈里面通常用一维数组来表示:
const smaxsize={栈的最大容量}
type
selement=integer;
sposition=0..smaxsize;
stack=record
data:array[1..smaxsize] of selement;
top:sposition;
serror=(noerror,empty,stackoverflow,stackunderflow);