⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 4-4.c

📁 数据结构经典算法
💻 C
字号:
#include "stdio.h"
#define StackSize 100 //假定预分配的栈空间最多为100个元素  	
typedef int DataType;//假定栈元素的数据类型为字符  	
typedef struct{
      DataType data[StackSize];
      int top;
}SeqStack;   
// 置栈空
void Initial(SeqStack *S)
{//将顺序栈置空
      S->top=-1;
} 
//判栈空
int IsEmpty(SeqStack *S)
{
    return S->top==-1;
}
//判栈满
int IsFull(SeqStack *S)
{
	return S->top==StackSize-1;
}
//进栈
void Push(SeqStack *S,DataType x)
{
    if (IsFull(S))
	{
		printf("栈上溢"); //上溢,退出运行
		exit(1);
	}
    S->data[++S->top]=x;//栈顶指针加1后将x入栈
}
//出栈
DataType Pop(SeqStack *S)
{
	if(IsEmpty(S))
	{
		printf("栈为空"); //下溢,退出运行
		exit(1);
	}
	return S->data[S->top--];//栈顶元素返回后将栈顶指针减1
}
// 取栈顶元素
DataType Top(SeqStack *S)
{
	if(IsEmpty(S))
	{
		printf("栈为空"); //下溢,退出运行
		exit(1);
	}
	return S->data[S->top];
}
void MultiBaseOutput (int N,int B)
{//假设N是非负的十进制整数,输出等值的B进制数
	int i;
	SeqStack S;
	Initial(&S);
	while(N){  //从右向左产生B进制的各位数字,并将其进栈
		Push(&S,N%B); //将bi进栈0<=i<=j
		N=N/B;
	}
	while(!IsEmpty(&S)){  //栈非空时退栈输出
		i=Pop(&S);
		printf("%d",i);
	}
}
void main()
{
	MultiBaseOutput(1023,2);
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -