数据结构基于栈的数制转换

题目要求

将一个非负十进制整数N转换为二进制、八进制或十六进制。

代码演示

#include <stdio.h>
#include <stdlib.h>
#include <iostream>
#define MAXSIZE 100
#define ERROR 0
#define OK 1
#define OVERFLOW 1
typedef struct {
	int* base;
	int* top;
	int stacksize;
}SqStack;
void Push(SqStack& S, int e) {
	if (S.top - S.base == S.stacksize) return ERROR;
	*S.top++ = e;
	return OK;
}

void Pop(SqStack& S, int &e) {
	if (S.top == S.base) return ERROR;
	e = *--S.top;
	return OK;
}

void InitStack(SqStack& S) {
	S.base = new int[MAXSIZE];
	if (!S.base) exit(OVERFLOW);
	S.top = S.base;
	S.stacksize = MAXSIZE;
	return OK;
}

void eight(int N) {
	SqStack S;
	InitStack(S);
	while (N)
	{
		Push(S, N % 8);
		N = N / 8;
	}
	while (S.top - S.base != 0)
	{
		int e;
		Pop(S, e);
		printf("%d", e);
	}
}
void two(int N) {
	SqStack S;
	InitStack(S);
	while (N)
	{
		Push(S, N % 2);
		N = N / 2;
	}
	while (S.top - S.base != 0)
	{
		int e;
		Pop(S, e);
		printf("%d", e);
	}
}

void sixteen(int N) {
	SqStack S;
	InitStack(S);
	while (N)
	{
		Push(S, N % 16);
		N = N / 16;
	}
	while (S.top - S.base != 0)
	{
		int e;
		Pop(S, e);
		if (e > 9) {
			switch (e)
			{
			case 10:
				printf("A");
				break;
			case 11:
				printf("B");
				break;
			case 12:
				printf("C");
				break;
			case 13:
				printf("D");
				break;
			case 14:
				printf("E");
				break;
			case 15:
				printf("F");
				break;
			}
		}
		else
		{
			printf("%d", e);
		}
	}
}

int main() {
	int a;
	printf("请输入一个数:");
	scanf_s("%d", &a);
	printf("%d的八进制为:",a);
	eight(a);
	printf("\n");
	printf("%d的二进制为:",a);
	two(a);
	printf("\n");
	printf("%d的十六进制为:",a);
	sixteen(a);

}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值