欢迎来到天天文库
浏览记录
ID:14820907
大小:42.50 KB
页数:5页
时间:2018-07-30
《商品货架管理.doc》由会员上传分享,免费在线阅读,更多相关内容在行业资料-天天文库。
1、#include"stdio.h"#defineMAX100//定义最大structstack//栈{longintnumber[MAX];inttop;//记录栈顶}structqueue//队列{longintnumber[MAX];intfront;//队头intrear;//队尾}voidbuy(stack*p,queue*p1)//转换函数{p1->front=0;//将队列头设置为0;p1->rear=p->top;//根据栈的大小设置队列尾inti;for(i=0;inumber[i]=p->number[i];//
2、依次赋值}#includeusingnamespacestd;typedefintSElemType;typedefstruct{//建立顺序栈存储结构SElemType*base;SElemType*top;intstacksize;}Sqstack;intinit(Sqstack&s,intmaxsize)//初始化{s.base=newSElemType[maxsize];if(!s.base)exit(1);s.top=s.base;s.stacksize=maxsize;return0;}intpush(Sqstack&s,i
3、nte)//入栈{if(s.top-s.base==s.stacksize)return0;else{*s.top=e;s.top++;}return0;}intpop(Sqstack&s)//出栈{inte;if(s.top==s.base){return0;}else{e=*--s.top;}returne;}intlength(Sqstack&L)//求栈长{SElemType*p;p=L.base;for(inti=0;p!=L.top;i++){p++;}returni;}intshowout(SqstackL)//显示栈内所有元素{if(L.t
4、op==L.base){cout<<"货架已空"<>a;init(Q,a+1);//货架init(S,a+1);/
5、/辅助货架init(D,a+1);//记录营业情况cout<<"货架已经建立,请输入商品编号,生产日期早的编号小,先输入"<>b;if(b6、Sqstack&D)//出售商品{if(Q.base==Q.top){cout<<"商品已经售空"<7、tgetother(Sqstack&Q,Sqstack&S,Sqstack&D)//结束营业,并进货{cout<<"营业时间"<8、in>>b;if(b
6、Sqstack&D)//出售商品{if(Q.base==Q.top){cout<<"商品已经售空"<7、tgetother(Sqstack&Q,Sqstack&S,Sqstack&D)//结束营业,并进货{cout<<"营业时间"<8、in>>b;if(b
7、tgetother(Sqstack&Q,Sqstack&S,Sqstack&D)//结束营业,并进货{cout<<"营业时间"<8、in>>b;if(b
8、in>>b;if(b
此文档下载收益归作者所有