利用栈解决数制转换问题

#include<stdio.h>
#include<stdlib.h>
#include<math.h>
#include<iostream>
#include<malloc.h>

using namespace std;

#define STACK_INIT_SIZE 100
#define STACKINCREAMENT 10  
typedef int SElemType;

typedef struct
{
	SElemType *base;
	SElemType *top;
	SElemType stacksize;
}SqStack;

void InitStack(SqStack &s);
bool StackEmpty(SqStack s);
void GetTop(SqStack s,SElemType &e);
void Push(SqStack &s, SElemType e);
void Pop(SqStack &s, SElemType &e);
void conversion(SqStack &s, SElemType N, SElemType n);

void InitStack(SqStack &s)
{
	s.base = (SElemType *)malloc(STACK_INIT_SIZE*sizeof(SElemType));
	if (!s.base) exit(OVERFLOW);
	s.top = s.base;
	s.stacksize = STACK_INIT_SIZE;
}

bool StackEmpty(SqStack s)
{
	if (s.base == s.top)
		return true;
	else
		return false;
}

void GetTop(SqStack s, SElemType &e)
{
	if (s.base == s.top)
		return;
	else
		e = *(s.top - 1);
}

void Push(SqStack &s, SElemType e)
{
	if (s.top - s.base >= s.stacksize)
	{
		s.base = (SElemType *)realloc(s.base, (s.stacksize + STACKINCREAMENT)*sizeof(SElemType));
		if (!s.base) exit(OVERFLOW);
		s.top = s.base + s.stacksize;
		s.stacksize += STACKINCREAMENT;
	}
	*s.top++ = e;
}

void Pop(SqStack &s, SElemType &e)
{
	if (s.base == s.top) return;
	e = *--s.top;
}

void conversion(SqStack &s, SElemType N, SElemType n)
{
	InitStack(s);
	while (N)
	{
		Push(s,N%n);
		N = N / n;
	}
	cout << "转化成" << n << "进制之后的数:";
	while (!StackEmpty(s))
	{
		SElemType e;
		Pop(s,e);
		cout << e;
	}
}

int main()
{
	SElemType N, n;
	SqStack x;
	InitStack(x);
	cout << " 输入需要转化的数:";
	cin >> N;
	cout << "输入转换的目标进制:";
	cin >> n;
	cout << endl;
	conversion(x,N,n);
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值