利用栈实现进制转换

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了利用栈实现进制转换相关的知识,希望对你有一定的参考价值。

#include<stdio.h>
#include<malloc.h>

#define MAX_STACK_SIZE 10//静态栈向量大小

#define ERROR 0
#define OK 1

typedef int ElemType;
typedef int Status;
/
栈的应用:
进制转换
/
typedef struct sqstack{
ElemType stack_array[MAX_STACK_SIZE];
// int size;
int top;
int bottom;
}SqStack;

//初始化栈
void Init_Stack(SqStack *S){
S->bottom=S->top=0;
printf(" 初始化栈成功! ");
}

//压栈(元素进栈)
Status push(SqStack *S , ElemType e){
if(S->top >= MAX_STACK_SIZE - 1){
printf("栈满! ");
return ERROR;//栈满
}
printf("--------");
printf("当前入栈元素:%d ",e);
// printf("入栈前S->top==%d ",S->top);
S->top++;//位置自加
// S->size++;
// printf("size==%d",S->size);
printf("入栈后S->top==%d ",S->top);
S->stack_array[S->top] = e;//元素入栈
return OK;
}

//弹栈(元素出栈)
Status pop(SqStack *S , ElemType e){
if(S->top == 0){
return ERROR;//栈空
}
e = S->stack_array[S->top];//先取
printf("当前应当出栈:%d ",e);
S->top--;//自减
// S->size--;
// printf("size==%d",S->size);
return OK;
}

//遍历栈
Status StackTravel(SqStack *S){
int e;
int ptr;
ptr = S->top;

while(ptr > S->bottom){
    e = S->stack_array[ptr];
    ptr--;
    printf("%d",e);
}

}

void conversion(int n , int d){
SqStack S;//创建栈
ElemType k;//欲进栈的元素
int temp = n;//保存n
Init_Stack(&S);//初始化栈
// printf("--入栈初始:S->top==%d ",S.top);
while(n>0){
k = n % d;//取余
push(&S,k);//余数进栈
n = n / d;//结果取整
}
printf("将%d转化成%d进制后为:",temp,d);
StackTravel(&S);//遍历栈
}

int main(){
conversion(511, 2);
conversion(512, 2);
}

以上是关于利用栈实现进制转换的主要内容,如果未能解决你的问题,请参考以下文章

请教QT中怎么实现10进制数转换为16进制数 最好有代码

顺序栈-使用顺序栈实现十进制转换二进制

把十进制整数转换为r(r=2)进制输出(顺序栈实现)

利用java中的BigInteger实现进制转换

栈1--进制转换

求教如何Python十进制小数和二进制小数相互转换的实现方式,用代码表示出来,谢谢