栈的线性存储

#include<iostream>
using namespace std;

typedef int ElemType ;
#define init_space 100
#define incre_space 10

struct SequenceStack{
	ElemType *base;
	ElemType *top;
	int stacksize;
};

int init(SequenceStack &SS)
{
	SS.base=(ElemType*)malloc(sizeof(ElemType)*init_space);
	if(!SS.base)
	{
		cout<<"初始化分配失败"<<endl;
		exit(-1);
	}
	SS.top=SS.base;
	SS.stacksize=init_space;
	return  1;
}

int push(SequenceStack &ss,ElemType e)
{
	if((ss.top-ss.base)>=ss.stacksize)
	{
		ss.base=(ElemType*)realloc(ss.base,sizeof(ElemType)*(init_space+incre_space));
		if(!ss.base)
		{
			cout<<"内存重新分配失败"<<endl;
			exit(-1);
		}
		ss.top=ss.base+ss.stacksize;
		ss.stacksize+=incre_space;
	}
	*ss.top++=e;
	return 1;
}


int pop(SequenceStack &ss,ElemType &e)
{
	if(ss.base==ss.top)
	{
		cout<<"栈为空,不能进行出栈操作"<<endl;
		exit(0);
	}

	e=*(--ss.top);
	return 1;
}


int get_top(SequenceStack &ss,ElemType &e)
{
	if(ss.base==ss.top)
	{
		cout<<"栈为空"<<endl;
		exit(-1);
	}

	e=*(ss.top-1);
	return 1;
}

//遍历栈
void printStack(SequenceStack &ss)
{
	ElemType *temp;
	temp=ss.base;
	if(ss.top==ss.base)
	{
		cout<<"为空"<<endl;
		exit(-1);
	}
	while(temp!=ss.top)
	{
		cout<<*temp<<endl;
		temp++;
	}
}


void main()
{
	SequenceStack ss;
	init(ss);
	push(ss,1);
	push(ss,2);
	push(ss,3);
	printStack(ss);
	int e,e2;
	get_top(ss,e);
	cout<<e<<endl;
	pop(ss,e2);
	cout<<e2<<endl;
	cout<<ss.base[0]<<endl;

	system("pause");

}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值