[数据结构-严蔚敏版]P46栈的顺序存储表示

Posted Wecccccccc

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了[数据结构-严蔚敏版]P46栈的顺序存储表示相关的知识,希望对你有一定的参考价值。


大家如果发现代码有错误,麻烦评论告知一下!!!

代码如下:

#include <iostream>
using namespace std;

const int STACK_INIT_SIZE = 100;
const int STACKINCREMENT = 10;

typedef int ElemType;

typedef struct
{
	ElemType *base;
	ElemType *top;
	int stacksize;
}SqStack;

bool initStack(SqStack &s)
{
	s.base = new ElemType[STACK_INIT_SIZE];
	if (!s.base) return false;
	s.top = s.base;
	s.stacksize = STACK_INIT_SIZE;
	return true;
}

bool destroyStack(SqStack &s)
{
	delete[] s.base;
	s.base = s.top = nullptr;
	s.stacksize = 0;
	return true;
}

bool clearStack(SqStack &s)
{
	s.top = s.base;
	return true;
}

bool stackEmpty(SqStack s)
{
	if (s.top == s.base) return true;
	return false;
}

int stackLength(SqStack s)
{
	return s.top - s.base;
}



bool getTop(SqStack s, ElemType &e)
{
	if (s.top == s.base) return false;
	e = *(s.top - 1);
	return true;
}

bool push(SqStack &s, ElemType e)
{
	if (s.top - s.base >= s.stacksize)
	{
		ElemType *q = new ElemType[STACK_INIT_SIZE + STACKINCREMENT];
		if (!q) return false;
		ElemType *p = s.base;
		int i = 0;
		while (p != s.top)
		{
			q[i++] = *p;
			p++;
		}
		delete[] s.base;
		s.base = q;
		s.top = s.base + s.stacksize;
		s.stacksize += STACKINCREMENT;
	}
		*s.top++ = e;
		return true;
}

bool pop(SqStack &s, ElemType &e)
{
	if (s.top == s.base) return false;
	e = *--s.top;
	return true;
}

void vis(ElemType a)
{
	cout << a << " ";
}

void stackTraverse(SqStack s, void(*visit)(ElemType))
{
	ElemType *q = s.base;
	while (q!=s.top)
	{
		visit(*q);
		q++;
	}
}

int main()
{
	SqStack s;
	initStack(s);
	int n;
	int a;
	cin >> n;
	for (int i = 0; i < n; i++)
	{
		cin >> a;
		push(s, a);
	}
	getTop(s, a);
	cout << "a = "<<a << endl;
	stackTraverse(s, vis);
	cout << endl;
	pop(s, a);
	pop(s, a);
	stackTraverse(s, vis);
	return 0;
}



以上是关于[数据结构-严蔚敏版]P46栈的顺序存储表示的主要内容,如果未能解决你的问题,请参考以下文章

[数据结构-严蔚敏版]P64循环队列-队列的顺序存储结构

线性表的顺序表示和实现(严蔚敏版)

[数据结构-严蔚敏版]P61ADT Queue的表示与实现(单链队列-队列的链式存储结构)

考研笔记之数据结构之线性表(严蔚敏版)

考研笔记之数据结构之线性表(严蔚敏版)

考研笔记之数据结构之线性表(严蔚敏版)