数据结构实验二
作者:互联网
#include <stdio.h>
#include <stdlib.h> int STACK_INIT_SIZE=100;
int STACKINCREMENT=10;
typedef struct{
int *base;
int *top;
int stacksize;
}sqstack; void initstack(sqstack &S){
S.base=(int * )malloc(STACK_INIT_SIZE*sizeof(int));
if(!S.base)exit(1);
S.top=S.base;
S.stacksize=STACK_INIT_SIZE;
} int judge(sqstack S){
if(S.top==S.base)
return 0;
else
return 1;
} void push(sqstack &S,int e){
if(S.top-S.base>=S.stacksize){
S.base=(int*)realloc(S.base,(S.stacksize+STACKINCREMENT)*sizeof(int));
if(!S.base)exit(1);
S.top=S.base+S.stacksize;
S.stacksize+=STACKINCREMENT;
}
*S.top++=e;
} void pop(sqstack &S,int &e){
if(S.top==S.base)
printf("error");
e=*--S.top;
} void main(){
printf("数据结构实验二数制转换\n");
sqstack s;
int n;
initstack(s);
printf("输入一个十进制数\n");
scanf("%d",&n);
while(n){
push(s,n%8);
n/=8;
}
while(judge(s)){
pop(s,n);
printf("%d",n);
}
}
#include <stdlib.h> int STACK_INIT_SIZE=100;
int STACKINCREMENT=10;
typedef struct{
int *base;
int *top;
int stacksize;
}sqstack; void initstack(sqstack &S){
S.base=(int * )malloc(STACK_INIT_SIZE*sizeof(int));
if(!S.base)exit(1);
S.top=S.base;
S.stacksize=STACK_INIT_SIZE;
} int judge(sqstack S){
if(S.top==S.base)
return 0;
else
return 1;
} void push(sqstack &S,int e){
if(S.top-S.base>=S.stacksize){
S.base=(int*)realloc(S.base,(S.stacksize+STACKINCREMENT)*sizeof(int));
if(!S.base)exit(1);
S.top=S.base+S.stacksize;
S.stacksize+=STACKINCREMENT;
}
*S.top++=e;
} void pop(sqstack &S,int &e){
if(S.top==S.base)
printf("error");
e=*--S.top;
} void main(){
printf("数据结构实验二数制转换\n");
sqstack s;
int n;
initstack(s);
printf("输入一个十进制数\n");
scanf("%d",&n);
while(n){
push(s,n%8);
n/=8;
}
while(judge(s)){
pop(s,n);
printf("%d",n);
}
}
标签:sqstack,int,top,base,实验,printf,stacksize,数据结构 来源: https://www.cnblogs.com/P201821430020/p/11829703.html