永发信息网

数据结构中数制转换的这个循环是死循环吗? while(N){ Push(S,N%8);

答案:1  悬赏:20  手机版
解决时间 2021-03-23 17:44
  • 提问者网友:锁深秋
  • 2021-03-23 08:00
数据结构中数制转换的这个循环是死循环吗? while(N){ Push(S,N%8);
最佳答案
  • 五星知识达人网友:青尢
  • 2021-03-23 08:45
#include
#include
#include
typedef struct
{
int *base;
int *top;
int stacksize;
}SqStack;
void init(SqStack &S)
{
S.base=(int *)malloc(100*sizeof(int));
S.top=S.base;
S.stacksize=100;
}
void Push(SqStack &S, int n)
{
*S.top = n;
S.top++;
}
int StackEmpty(SqStack &S)
{
if(S.topreturn true;
else
return false;
}
void Pop(SqStack &S, int n)
{
n=*S.top;
S.top--;
}
void main()
{
SqStack S;
init(S);
memset(S.base,0,siezof(int)*100);//添加memset函数
int N,e;
scanf("%d",&N);
while(N)
{
Push(S,N%8);
N=N/8;
}
while(!StackEmpty(S))
{
Pop(S,e);
printf("%d\n",e);
}
}
我要举报
如以上回答内容为低俗、色情、不良、暴力、侵权、涉及违法等信息,可以点下面链接进行举报!
点此我要举报以上问答信息
大家都在看
推荐资讯