码迷,mamicode.com
首页 > 编程语言 > 详细

栈的c语言实现

时间:2017-07-31 13:22:53      阅读:272      评论:0      收藏:0      [点我收藏+]

标签:get   语言   type   tac   stream   ++   turn   else   ini   

C语言实现代码
#include<iostream>
using namespace std;

#define STACK_INIT_SIZE 10
#define STACKINCREMENT 10
#define ElemType int

typedef struct
{
	ElemType *base;
	int top;
	size_t capacity;
}SqStack;

bool IsFull(SqStack *st)
{
	return st->top >= st->capacity;
}
bool IsEmpty(SqStack *st)
{
	return st->top == 0;
}
bool InitStack(SqStack *st)
{
	st->base = (ElemType*)malloc(STACK_INIT_SIZE * sizeof(ElemType));
	st->top = 0;
	st->capacity = STACK_INIT_SIZE;
	return true;
}
ElemType GetTop(SqStack *st)
{
	if(!IsEmpty(st))
	{
		return st->top;
	}
	cout<<"stack empty!"<<endl;
	return -1;
}
void Push(SqStack *st, ElemType item)
{
	if(!IsFull(st))
	{
		st->base[st->top++] = item;
	}
	else
	{
		cout<<"stack full!"<<endl;
	}
}
void Show(SqStack *st)
{
	for(int i=st->top-1; i>=0; --i)
	{
		cout<<st->base[i]<<" ";
	}
	cout<<endl;	
}
ElemType Pop(SqStack *st)
{
	if(!IsEmpty(st))
	{
		st->top--;
		return st->base[st->top];	
	}
	return -1;
}

int main()
{
	SqStack st;
	InitStack(&st);
	int i = 0;
	for(; i<5; ++i)
		Push(&st,i);
	Pop(&st);
	Show(&st);
	return 1;
}



c++实现代码:

#include<iostream>
using namespace std;

#define ElemType int
#define STACK_INIT_SIZE 10
template<class _Ty>
class stack
{
public:
	stack():top(-1),capacity(STACK_INIT_SIZE)
	{
		base = new ElemType[capacity];
	}
	~stack()
	{
		delete []base;
	}
bool IsEmpty()
{
	return top == -1;
}
bool IsFull()
{
	return top == capacity-1;
}
bool Push(_Ty item)
{
	if(!IsFull())
	{
		base[++top] = item;
		return true;
	}
	cout<<"stack full! increment base..."<<endl;
	return false;
}
bool Pop()
{
	if(!IsEmpty())
	{
		base[top--];
		return true;
	}
	return false;
}
_Ty GetTop()
{
	if(!IsEmpty())
	{
		return base[top];
	}
	return -1;
}
int Show()
{
	int i =top;
	for(; i>=0; --i)
		cout<<base[i]<<" ";
	cout<<endl;
	return 1;
}
private:
	ElemType *base;
	int top;
	size_t capacity;
};

int main()
{
	stack<int> st;
	int i = 0;
	for(; i<5; ++i)
		st.Push(i);
	st.Pop();
	st.Show();
	cout<<st.GetTop()<<endl;
	return 1;
}


栈的c语言实现

标签:get   语言   type   tac   stream   ++   turn   else   ini   

原文地址:http://www.cnblogs.com/llguanli/p/7262463.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!