我写的程序,十进制转换成二进制,用c++编的。找了好久也没发现错误 ,调试说是在push 函数中错了 可不知道怎么改!
别的地方也有不合适的,在这想请教一下高手,帮忙看看 谢谢!
struct SXZ
{
int MAX;
int t;
int *s;
};
typedef struct SXZ * PSXZ;
#include <stdio.h>
#include <stdlib.h>
#include "10_2.h"
PSXZ creat_SXZ(int i);
int isNULLSXZ(PSXZ m);
void push(PSXZ sxz,int x);
int qzd(PSXZ sxz);
//以上是头文件
PSXZ creat_SXZ(int i) //创建一个空栈
{
PSXZ sxz;
sxz=(PSXZ)malloc(sizeof(struct SXZ));
if(sxz!=NULL)
{
sxz->s=(int*)malloc(sizeof(int)*i);
if(sxz->s)
{sxz->MAX=i;
sxz->t=-1;
return (sxz);
}
}
else
printf("Out of space!\n");
return NULL;
}
int isNULLSXZ(PSXZ sxz) //判断是否栈为空
{
return(sxz->t==0);
}
void push(PSXZ sxz,int x) // 将得到的值放进栈中
{
if(sxz->t==MAX-1)
printf("Overflow\n");
else
{
sxz->t=sxz->t+1;
sxz->s[sxz->t]; //调试就说这里不对
}
}
int qzd(PSXZ sxz) //取栈顶元素
{
if(sxz->t==-1)
printf("Underflow!\n");
else
return(sxz->s[sxz->t]);
}
//下面是主函数
#include <stdio.h>
#include "10_2.h"
int main(void)
{
int k;
PSXZ z;
z=creat_SXZ(20);
printf("输入一个十进制数:");
scanf("%d",&k);
while(k)
{
push(z,k%2);
k=k/2;
}
while(!isNULLSXZ(z))
{
printf("%d",qzd(z));
}
printf("\n");
return 0;
}