小小颜


私信TA

用户名:dotcpp0767341

访问量:277

签 名:

等  级
排  名 28743
经  验 531
参赛次数 0
文章发表 7
年  龄 0
在职情况 学生
学  校 长沙师范学院
专  业

  自我简介:

TA的其他文章

解题思路:

注意事项:

参考代码:

#include <stdio.h>

#include <malloc.h>

#define MAXSIZE 100

typedef struct

{

int data[MAXSIZE];

int top;

}SqStack;

int Empty(SqStack *S);

int PushStack(SqStack *S,int e);

int PopStack(SqStack *S,int *e);

void conversion(int number);


int Empty(SqStack *S)

{

if(S->top==-1)

return 1;

else

return 0;

}


int PushStack(SqStack *S,int e)

{

if(S->top==MAXSIZE-1)

return 0;

S->top++;

S->data[S->top]=e;

return 1;

}


int PopStack(SqStack *S,int *e)

{

if(S->top==-1)

return 0;

*e=S->data[S->top];

S->top--;

return 1;

}


void conversion(int number)

{

int e;

SqStack *L;

L->top=-1;

L=(SqStack *)malloc(sizeof(SqStack));

while(number)

{

PushStack(L,number%8);

number=number/8;

}

while(!Empty(L))

{

PopStack(L,&e);

printf("%d",e);

}

printf("\n");

}

int main()

{

int num;

while(scanf("%d",&num)!=EOF)

{

conversion(num);

}

return 0;

}









 

0.0分

0 人评分

  评论区

  • «
  • »