欢迎来到天天文库
浏览记录
ID:54701187
大小:69.00 KB
页数:2页
时间:2020-04-20
《顺序表将十进制转换成其他进制.doc》由会员上传分享,免费在线阅读,更多相关内容在行业资料-天天文库。
1、#include#include#defineinit_size100#defineincreasesize10typedefstruct{int*base;int*top;intstacksize;}SqStack;voidCreateStack(SqStack&s){s.base=(int*)malloc(init_size*sizeof(int));s.top=s.base;s.stacksize=init_size;}voidPush(SqStack&s,inte){if(s.top-s.base>=s.stack
2、size)s.base=(int*)realloc(s.base,(s.stacksize+increasesize)*sizeof(int));*s.top++=e;s.stacksize++;}voidPop(SqStack&s,int&e){if(s.base==s.top){printf("这是空的栈");e=-1;}else{e=*--s.top;s.stacksize--;}}voidconversion(inta,intb){SqStacksc;inte;CreateStack(sc);while(a){Push(sc,a%b);a=a/b;}p
3、rintf("%d转化为%d进制:",a,b);intc=sc.top-sc.base;for(inti=0;i
此文档下载收益归作者所有