栈的自实现

栈的自实现

#include "stdafx.h"


//FILO      
//first in last out
//LIFO
//last in first out

#define N   100

struct Stack
{
	char space[N]; //栈空间
	int top;       //栈下标
};

struct Stack  st = { { 0 }, 0 };

int isFull()  //栈满返真
{
	if (st.top == 100)
		return 1;
	else
		return 0;
}


int isEmpty()  //栈空返真
{
	if (st.top == 0)
		return 1;
	else
		return 0;
}


void pushStack(char ch)//入栈
{
	st.space[st.top] = ch;
	st.top++;
}


int popStack()//出栈
{
	st.top--;
	return st.space[st.top];
}

//注意入栈出栈的自定义函数,若参数定义为struct Stack st
//则是在"栈"(用完即消)上进行的操作,不能影响到全局变量st!

int _tmain(int argc, _TCHAR* argv[])
{
	char ch = 'a';
	for (int i = 0; i<26; i++)
	{
		if (!isFull())
			pushStack(ch++);//ch++为了打印26个字母
	}

	while (!isEmpty())
		putchar(popStack());//按栈的方式倒序输出字母
	return 0;
}


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值