c语言数据结构错误,求大神
#include<stdio.h>#include<stdlib.h>typedefstruct{int*base;int*top;intstacksize;}SqSta...
#include<stdio.h>
#include<stdlib.h>
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++;
}
void StackEmpty(SqStack &S)
{
if(S.top==S.base)
return true;
else
return false;
}
void Pop(SqStack &S, int n)
{
n=*S.top;
S.top--;
}
void main()
{
SqStack S;
init(S);
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);
}
}
求大神把错误解决,能成功的运行输入一个十进制数能转换成八进制的。 展开
#include<stdlib.h>
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++;
}
void StackEmpty(SqStack &S)
{
if(S.top==S.base)
return true;
else
return false;
}
void Pop(SqStack &S, int n)
{
n=*S.top;
S.top--;
}
void main()
{
SqStack S;
init(S);
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);
}
}
求大神把错误解决,能成功的运行输入一个十进制数能转换成八进制的。 展开
2个回答
展开全部
给你指出两个错误:
StackEmpty函数名前是void,函数体中却有返回值的语句,这连编译都过不了的。
主函数中的变量e没有初始化,却在当右值使用,也看不出应该初始化为什么值才对。
更多追问追答
追问
能不能帮我改下代码,能够成功的运行出来。
追答
我没看明白代码要干什么。把一个十进制数变成八进制输出要那么复杂吗?
本回答被网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
#include<stdio.h>
#include<stdlib.h>
#include<string.h>/*使用memset(void *,int n,int count)将申请的内存清0*/
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)/*将void改为int*/
{
if(S.top<S.base) /*将==改为< */
return 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);
}
}
#include<stdlib.h>
#include<string.h>/*使用memset(void *,int n,int count)将申请的内存清0*/
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)/*将void改为int*/
{
if(S.top<S.base) /*将==改为< */
return 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);
}
}
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询