概述
容我说一句链表貌似把这么简单的东西复杂化了很多;
#include<stdio.h>
#include<stdlib.h>
typedef struct
{
int data[50];
int top;
}SqStack;
void initstack(SqStack *&s)
{
s=(SqStack *)malloc(sizeof(SqStack));
s->top=-1;
}
int main()
{
int n;
scanf("%d",&n);
SqStack *s;
initstack(s);
while(n>0)
{
s->top++;
s->data[s->top]=n%2;
n=n/2;
}
while(s->top>=0)
{
printf("%d",s->data[s->top]);
s->top--;
}
return 0;
}
最后
以上就是外向项链为你收集整理的【数据结构_链表_List_0961】进制转换的全部内容,希望文章能够帮你解决【数据结构_链表_List_0961】进制转换所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复