为了账号安全,请及时绑定邮箱和手机立即绑定

请教下判断栈为空的函数怎么写?

请教下判断栈为空的函数怎么写?

C PHP
呼如林 2022-08-12 14:10:25
#define maxnum 20#include<stdio.h>#include<stdlib.h>struct stacktype{int stack[maxnum];int top;};int push(struct stacktype *s,int x){if(s->top>=maxnum-1)return false;elses->top++;s->stack[s->top]=x;return true;}int pop(struct stacktype *s){if(s->top <0)return NULL;elses->top--;return(s->stack[s->top+1]);}dec_to_bin(int n,int b){int e;InitStack(S);//请问初始化堆栈函数怎么写?while(n){push(S,n%b);n=n/b;}while(!StackEmpty)//判断栈为空的函数怎么写?{e=pop(S);printf("%d",e);}}main{dec_to_bin(13,2);}
查看完整描述

1 回答

?
温温酱

TA贡献1752条经验 获得超4个赞

我帮你写了InitStack和StackEmpty函数,程序最终结果如下:
#define maxnum 20
#include<stdio.h>
#include<stdlib.h>

struct stacktype
{
int stack[maxnum];
int top;
};
struct stacktype *S;//顶一个堆栈
int push(struct stacktype *s,int x)
{
if(s->top>=maxnum-1)
return false;
else
s->top++;
s->stack[s->top]=x;
return true;
}

int pop(struct stacktype *s)
{
if(s->top <0)
return NULL;
else
s->top--;
return(s->stack[s->top+1]);
}
//初始化堆栈
void InitStack(struct stacktype* &S)
{
S = (struct stacktype *)malloc(sizeof(struct stacktype));
S->top = -1;
}
//判断堆栈是否为空
bool StackEmpty(struct stacktype *S)
{
if (S->top <0)
{
return true;
}
return false;
}

void dec_to_bin(int n,int b)
{
int e;

InitStack(S);//请问初始化堆栈函数怎么写?
if (S ==NULL)
{
printf("error \n");
return;
}
while(n)
{
push(S,n%b);
n=n/b;
}
while(!StackEmpty(S))//判断栈为空的函数怎么写?
{
e=pop(S);
printf("%d",e);
}
}

void main()
{
dec_to_bin(13,2);
printf("\n");
}
程序运行结果为:
1101


查看完整回答
反对 回复 2022-08-15
  • 1 回答
  • 0 关注
  • 405 浏览

添加回答

举报

0/150
提交
取消
微信客服

购课补贴
联系客服咨询优惠详情

帮助反馈 APP下载

慕课网APP
您的移动学习伙伴

公众号

扫描二维码
关注慕课网微信公众号