C语言实训周笔记(8)

本文展示了如何用C++编写一个顺序栈(SeqStack)的模板类,包括构造函数、析构函数、大小检查、是否为空、是否已满、压栈、弹栈、获取栈顶元素以及清空栈等操作。示例代码演示了如何创建和操作整数类型的顺序栈。
摘要由CSDN通过智能技术生成

缺省函数主要包括:拷贝构造函数、析构函数、构造函数、赋值语句
构造函数:创建对象,并对对象初始化;有返回值
析构函数:释放;有返回值;
对于面向对象来说:空间与对象是分离的;

#include <iostream>
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
using namespace std;

template<class Type>
class SeqStack
{
private:
	Type* data;
	int maxsize;
	int top;
public:
	SeqStack(int sz = 100) :maxsize(sz), top(-1)
	{
		data = (Type*)malloc(sizeof(Type) * maxsize);
		if (data == NULL)exit(1);
	}
	~SeqStack()
	{
		free(data);
		data = NULL;
		maxsize = 0;
		top = -1;
	}
	int GetSize() const
	{
		return top + 1;
	}
	bool Is_Empty() const
	{
		return GetSize() == 0;
	}
	bool Is_Full() const
	{
		return GetSize() == maxsize;
	}
	bool Push(const Type& x)
	{
		if (Is_Full())return false;
		data[++top] = x;
		return true;
	}
	Type& GetTop()
	{
		return data[top];
	}
	const Type& GetTop()const
	{
		return data[top];
	}
	void Pop()
	{
		--top;
	}
	void Clear()
	{
		top = -1;
	}
};

int main()
{
	SeqStack <int> ist = SeqStack<int>();
	ist.Push(12);
	ist.Push(23);
	ist.Push(34);
	ist.Push(45);

	while (!ist.Is_Empty())
	{
		int x = ist.GetTop();
		ist.Pop();
		cout << x << endl;
	}
	return 0;
}


 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值