C++数据结构栈的实现

#include<iostream>
using namespace std;
template<typename T>
class Stack
{
public:
	Stack(int s=10);
	~Stack();
	bool StackEmpty();
	int StackLength();
	T GetTop(T &e);
	void Push(T e);
	T Pop(T &e);

private:
	T *base;
	T *top;
	int stacksize,count;
	T *array;
};
template<typename T>
Stack<T>::Stack(int s=10)
{
	array=new T[s];
	stacksize=s;
	count=0;
	top=base=array;
}
template<typename T>
Stack<T>::~Stack()
{
}
template<typename T>
bool Stack<T>::StackEmpty()
{
	return count==0;
}
template<typename T>
int Stack<T>::StackLength()
{
	return count;
}
template<typename T>
T Stack<T>::GetTop(T &e)
{
	e=*(top-1);
	return e;
}
template<typename T>
void Stack<T>::Push(T e)
{
	if(count+1<=stacksize)
	{
		count++;
		*top=e;
		top++;
	}
	else
	{
		cout<<"栈空间不足"<<endl;
	}
}
template<typename T>
T Stack<T>::Pop(T &e)
{
	if(count==0)
		cout<<"栈已经为空"<<endl;
	else
	{
		e=*(top-1);
		top--;
		count--;
	}
	return e;
}
int main()
{
	Stack<int> a1(9);
	for(int i=0;i<10;i++)
		a1.Push(i);
	cout<<"栈的大小:"<<a1.StackLength()<<endl;
	cout<<"栈是否为空:"<<a1.StackEmpty()<<endl;
	int e;
	cout<<"栈顶元素:"<<a1.GetTop(e)<<endl;
	while(!a1.StackEmpty())
	{
		int e;
		cout<<a1.Pop(e)<<endl;
	}
	return 0;
}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值