用栈逆置队列
数据结构简单用栈逆置队列/*队列结构*/typedefstruct{DataTypedata[MAXSIZE];intfront,rear;}Sequeue;/*栈结构*/typedefstruct{DataTypedata[MAXSIZE];inttop;}Seqstack;
下载地址
用户评论