数据结构之SWUSTOJ961: 进制转换问题

题目:

代码:

#include<stdio.h>
#include<stdlib.h>
typedef struct Stack
{
	int* data;
	int top;//栈顶
	int capacity;//栈的容量
}ST;
void SLInit(ST* ps)
{
	ps->data = NULL;
	ps->capacity = 0;
	ps->top = 0;//ps->top=-1
	//初始化时top给0,意味着top指向栈顶数据的下一个
	//初始化时top给1,意味着top指向栈顶数据
}
void StackPush(ST* ps, int x)
{
	if (ps->top == ps->capacity)
	{
		int newCapacity = ps->capacity == 0 ? 4 : ps->capacity * 2;//运用三目操作符,如果capacity=0,则给4个空间
		int* tmp = (int*)realloc(ps->data, sizeof(int) * newCapacity);//realloc开辟空间
		if (tmp == NULL)
		{
			exit(-1);
		}//扩容失败则退出程序
		ps->data = tmp;//内存开辟成功,将指针指向tmp
		ps->capacity = newCapacity;//容量改变成新容量大小
	}
	ps->data[ps->top] = x;//放入x数据
	ps->top++;//top往后移一个
}
void StackPrint(ST* ps)
{
	int top = ps->top;
	while (top)
	{
		printf("%d", ps->data[top - 1]);
        //注意每一次打印的是栈顶的元素,而top指向的是栈顶的下一个元素,这里要减1一下
		top--;
	}
}
int main()
{
	ST List;
	SLInit(&List);
	int n = 0;
	scanf("%d", &n);
	getchar();
	int x = 0;
	while (n != 0)
	{
		x = n % 2;
		n = n / 2;
		StackPush(&List, x);//每一次算出来的x都进行一下压栈
	}
	StackPrint(&List);
	return 0;
}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

~|Bernard|

你的鼓励是我写下去最大的动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值