数据结构数组栈的实现

简介: 数据结构数组栈的实现

Hello,今天我们来实现一下数组栈,学完这个我们又更进一步了。

一、栈

栈的概念

栈是一种特殊的线性表,它只允许在固定的一端进行插入和删除元素的操作。

进行数据的插入和删除只在栈顶实现,另一端就是栈底。

栈的元素是后进先出。

压栈:栈的数据进入就是压栈

出栈:栈的数据删除就叫出栈

我们画一个原理图让大家比较好理解一下。

这一过程叫做pop出栈

我们上述的过程都是在栈顶实现出栈入栈,并不能像顺序表和单链表那样从任意位置删除和增加,但这就是栈的性质,我们后面会讲它的作用。

实现栈我们可以用链表产生节点的方式链接他们,但是也可以用数组下标访问的方式,类似顺序表这样的方法

那这两个方法哪个好呢,我们来比较一下。

因为栈的性质我们不得从栈顶出栈和入栈,如果我们实现的时候是链表的方式,那必然会存在一个问题,就是我们的时间复杂度是O(N)我们需要遍历一遍数组,这样的话栈好像变得“土”,所以用数组的方式更快的提高效率,

二、栈的定义

typedef int StackDataType;
#define N 100
struct Stack
{
  StackDataType arry[N];
  StackDataType top;
};

这是静态栈,在顺序表的时候我们就讲过静态栈存在缺点,最大的缺点就是不能开辟空间,100个最多只能存100个数据,如果我只使用10个int空间就存在浪费了,如果我要存储1000个数据,我们的空间又不够了,这就会造成一系列问题,所以我们改一下,变成动态栈,我们来实现一下吧。

typedef int StackDataType;
typedef struct Stack
{
  StackDataType* arry;
  int top;
  int capacity;
}Stack;

有了结构体还是老样子,我们来实现一下接口函数,开整!

初始化栈

void StackInit(Stack* pst)
{
  assert(pst);
  pst->arry = NULL;
  pst->capacity = pst->top = 0;
}

初始化栈这个大家肯定会了。

销毁

void StackDestory(Stack* pst)
{
  assert(pst);
  free(pst->arry);
  pst->capacity = pst->top = 0;
}

判断栈是否为空

bool StackEmpty(Stack* pst)
{
  assert(pst);
  return pst->top == 0;
}

现在我们要实现一个入栈的方法,入栈的时候我们需要检查一下我们的内存空间是不是满了,和顺序表一样的道理,如果满了我们就需要扩容。所以在入栈的时候需要判断一下它空间有没有满。

void StackPush(Stack* pst, StackDataType x)
{
  assert(pst);
  if (pst->capacity == pst->top)
  {
    int newcapacity = pst->capacity == 0 ? 4 : pst->capacity * 2;
    StackDataType* tmp = (StackDataType*)realloc(pst->arry, sizeof(int) * newcapacity);
    if (tmp == NULL)
    {
      printf("realloc fail\n");
      exit(-1);
    }
    pst->arry = tmp;
    pst->capacity = newcapacity;
  }
  pst->arry[pst->top - 1] = x;
  pst->top++;
}

这和我们顺序表的尾插一摸一样,现在看大家肯定觉得简单很多了。

有了入栈,那就有出栈。

void StackPop(Stack* pst)
{
  assert(pst);
  if (pst->top > 0)
  {
    pst->top--;
  }
}

因为我们上面写了一个判断该数是不是为空我们也可以写成

void StackPop(Stack* pst)
{
  assert(pst);
  if (!StackEmpty(pst))
  {
    pst->top--;
  }
}

返回栈顶数据

StackDataType StackTop(Stack* pst)
{
  assert(pst);
  return pst->arry[pst->top - 1];
}

统计栈里有多少数

int StackSize(Stack* pst)
{
  assert(pst);
  return pst->top;
}

完整代码

#pragma once
#include<stdio.h>
#include<assert.h>
#include<stdlib.h>
#include<stdbool.h>
//typedef int StackDataType;
//#define N 100
//struct Stack
//{
//  StackDataType arry[N];
//  StackDataType top;
//};
typedef int StackDataType;
typedef struct Stack
{
  StackDataType* arry;
  int top;
  int capacity;
}Stack;
void StackInit(Stack* pst);
void StackDestory(Stack* pst);
bool StackEmpty(Stack* pst);
void StackPush(Stack* pst, StackDataType x);
void StackPop(Stack* pst);
StackDataType StackTop(Stack* pst);
int StackSize(Stack* pst);
#include"Stack.h"
void StackInit(Stack* pst)
{
  assert(pst);
  pst->arry = NULL;
  pst->capacity = pst->top = 0;
}
void StackDestory(Stack* pst)
{
  assert(pst);
  free(pst->arry);
  pst->capacity = pst->top = 0;
}
bool StackEmpty(Stack* pst)
{
  assert(pst);
  return pst->top == 0;
}
void StackPush(Stack* pst, StackDataType x)
{
  assert(pst);
  if (pst->capacity == pst->top)
  {
    int newcapacity = pst->capacity == 0 ? 4 : pst->capacity * 2;
    StackDataType* tmp = (StackDataType*)realloc(pst->arry, sizeof(int) * newcapacity);
    if (tmp == NULL)
    {
      printf("realloc fail\n");
      exit(-1);
    }
    pst->arry = tmp;
    pst->capacity = newcapacity;
  }
  pst->arry[pst->top - 1] = x;
  pst->top++;
}
void StackPop(Stack* pst)
{
  assert(pst);
  if (pst->top > 0)
  {
    pst->top--;
  }
}
void StackPop(Stack* pst)
{
  assert(pst);
  if (!StackEmpty(pst))
  {
    pst->top--;
  }
}
StackDataType StackTop(Stack* pst)
{
  assert(pst);
  return pst->arry[pst->top - 1];
}
int StackSize(Stack* pst)
{
  assert(pst);
  return pst->top;
}

栈的应用也有很多,后面会分享给大家,我们下次再见

相关文章
|
19天前
|
C语言
【数据结构】栈和队列(c语言实现)(附源码)
本文介绍了栈和队列两种数据结构。栈是一种只能在一端进行插入和删除操作的线性表,遵循“先进后出”原则;队列则在一端插入、另一端删除,遵循“先进先出”原则。文章详细讲解了栈和队列的结构定义、方法声明及实现,并提供了完整的代码示例。栈和队列在实际应用中非常广泛,如二叉树的层序遍历和快速排序的非递归实现等。
97 9
|
10天前
|
存储 算法
非递归实现后序遍历时,如何避免栈溢出?
后序遍历的递归实现和非递归实现各有优缺点,在实际应用中需要根据具体的问题需求、二叉树的特点以及性能和空间的限制等因素来选择合适的实现方式。
19 1
|
12天前
|
存储 算法 Java
数据结构的栈
栈作为一种简单而高效的数据结构,在计算机科学和软件开发中有着广泛的应用。通过合理地使用栈,可以有效地解决许多与数据存储和操作相关的问题。
|
15天前
|
存储 JavaScript 前端开发
执行上下文和执行栈
执行上下文是JavaScript运行代码时的环境,每个执行上下文都有自己的变量对象、作用域链和this值。执行栈用于管理函数调用,每当调用一个函数,就会在栈中添加一个新的执行上下文。
|
17天前
|
存储
系统调用处理程序在内核栈中保存了哪些上下文信息?
【10月更文挑战第29天】系统调用处理程序在内核栈中保存的这些上下文信息对于保证系统调用的正确执行和用户程序的正常恢复至关重要。通过准确地保存和恢复这些信息,操作系统能够实现用户模式和内核模式之间的无缝切换,为用户程序提供稳定、可靠的系统服务。
46 4
|
21天前
|
算法 安全 NoSQL
2024重生之回溯数据结构与算法系列学习之栈和队列精题汇总(10)【无论是王道考研人还是IKUN都能包会的;不然别给我家鸽鸽丢脸好嘛?】
数据结构王道第3章之IKUN和I原达人之数据结构与算法系列学习栈与队列精题详解、数据结构、C++、排序算法、java、动态规划你个小黑子;这都学不会;能不能不要给我家鸽鸽丢脸啊~除了会黑我家鸽鸽还会干嘛?!!!
|
1月前
数据结构(栈与列队)
数据结构(栈与列队)
20 1
|
1月前
|
存储 JavaScript 前端开发
为什么基础数据类型存放在栈中,而引用数据类型存放在堆中?
为什么基础数据类型存放在栈中,而引用数据类型存放在堆中?
71 1
|
1月前
【数据结构】-- 栈和队列
【数据结构】-- 栈和队列
17 0
|
1月前
探索顺序结构:栈的实现方式
探索顺序结构:栈的实现方式

热门文章

最新文章

下一篇
无影云桌面