栈的数组实现

stack.h

#pragma once
#include<stdio.h>
#include<stdlib.h>
#include<stdbool.h>
#include<assert.h>

typedef int STDataType;
typedef struct Stack
{
	STDataType* arr;
	int top;//栈顶
	int capacity;
}ST;

//用数组来实现栈

void STInit(ST* pst);
void STDestroy(ST* pst);
void STPush(ST* pst, STDataType x);
void STPop(ST* pst);
//返回栈顶的值
STDataType STTop(ST* pst);
bool STEmpty(ST* pst);
int STSize(ST* pst);

stack.c

#include"Stack.h"
void STInit(ST* pst)
{
	assert(pst);
	pst->top = 0;
	pst->capacity = 0;
	pst->arr = NULL;
}

void STDestroy(ST* pst)
{
	assert(pst);
	free(pst->arr);
	pst->arr = NULL;
	pst->top = pst->capacity = 0;
}

void STPush(ST* pst, STDataType x)
{
	assert(pst);
	//
	if (pst->top == pst->capacity)
	{
		int newcapacity = pst->capacity == 0 ? 4 : 2 * pst->capacity;
		STDataType* tmp = (STDataType*)realloc(pst->arr, newcapacity * sizeof(STDataType));
		if (tmp == NULL)
		{
			perror("realloc:fail");
			return;
		}
		pst->arr = tmp;
		pst->capacity = newcapacity;
	}
	pst->arr[pst->top] = x;
	pst->top++;
}

void STPop(ST* pst)
{
	assert(pst);
	assert(pst->top > 0);
	pst->top--;
}

//ջֵ
STDataType STTop(ST* pst)
{
	assert(pst);
	assert(pst->top > 0);

	return pst->arr[pst->top - 1];
}


bool STEmpty(ST* pst)
{
	assert(pst);
	if (pst->top == 0)
	{
		return true;
	}
	else
		return false;
}

int STSize(ST* pst)
{
	assert(pst);
	return pst->top;
}

test.c

#include"Stack.h"


void test01()
{
	ST st;
	STInit(&st);
	STPush(&st, 1);
	STPush(&st, 2);
	STPop(&st);
	STPop(&st);
	STPop(&st);
	while (!STEmpty(&st))
	{
		printf("%d ", STTop(&st));
		STPop(&st);
	}

}

int main()
{
	test01();
}

  • 3
    点赞
  • 8
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
是一种后进先出(LIFO)的数据结构,可以使用数组实现。下面是使用数组实现的示例代码(使用C++语言实现): ```cpp #include <iostream> using namespace std; class Stack { private: int* arr; // 数组 int top; // 顶指针 int capacity; // 的容量 public: Stack(int size) { arr = new int[size]; capacity = size; top = -1; } ~Stack() { delete[] arr; } void push(int value) { if (isFull()) { cout << "Stack is full!" << endl; return; } arr[++top] = value; } int pop() { if (isEmpty()) { cout << "Stack is empty!" << endl; return -1; } return arr[top--]; } int peek() { if (isEmpty()) { cout << "Stack is empty!" << endl; return -1; } return arr[top]; } bool isEmpty() { return top == -1; } bool isFull() { return top == capacity - 1; } }; int main() { Stack s(5); s.push(1); s.push(2); s.push(3); s.push(4); s.push(5); cout << "Top element is: " << s.peek() << endl; s.pop(); s.pop(); s.pop(); cout << "Top element is: " << s.peek() << endl; return 0; } ``` 在上述示例代码中,我们定义了一个`Stack`类,它有一个整型的数组`arr`、一个顶指针`top`、一个的容量`capacity`。`push`函数实现了入操作,`pop`函数实现了出操作,`peek`函数用于获取顶元素,`isEmpty`函数用于判断是否为空,`isFull`函数用于判断是否已满。在主函数中,我们创建了一个容量为5的,并进行了一些基本的操作,例如入、出、获取顶元素等。

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值