数据结构|栈之顺序栈|c++

本文介绍了一个使用C++实现的栈数据结构,采用顺序表(数组)作为底层存储,实现了栈的基本操作如初始化、判断空栈、获取栈顶元素、清空栈、压栈和弹栈。栈的特点是先进后出,代码简洁明了,适用于教学或简单应用。
摘要由CSDN通过智能技术生成

栈的内容相对来说比较简单:

结构体为:栈顶指针 栈底指针 栈的长度;特点:先进后出

 使用顺序表(数组),来完成栈的相关操作

#include<iostream>
#include<string>
using namespace std;

#define ok 1
#define error -1




class Stack
{
public:
	Stack()
	{
		init();
	}
	~Stack()
	{
		destory();
	}
	void init();
	int stackempty();
	int stacklength();
	int gettop();
	void clearstack();
	void push(int val);
	int pop();
	void destory();



	int* top;
	int* base;
	int stacksize = 5;
};


void Stack::init()
{
	this->base = new int[stacksize];  //base 栈底
	this->top = this->base;
	
}
int Stack::stackempty()
{
	if (this->top == this->base)
	{
		return ok;
	}
	return -1;
}
int Stack::stacklength()
{
	return this->top - this->base;
}
int Stack::gettop()
{
	if (this->top != this->base)//非空
	{
		top = top - 1;
		return *top;
	}
	return -1;
}
void Stack::clearstack()
{
	top = base;
}

void Stack::push(int val)
{
	*top = val;
	top++;
}
int Stack::pop()
{
	if (top != base)  //非空
	{
		return(*--top);
	}
	return -1;
}

void Stack::destory()
{
	delete this->base;
	this->base = NULL;  // 指向空
	this->top = NULL;

}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值