• 数据结构-栈的实现


    1.栈的概念及结构

    栈:一种特殊的线性表,其只允许在固定的一端进行插入和删除元素操作。进行数据插入和删除操作的一端称为栈顶,另一端称为栈底。栈中的数据元素遵守后进先出LIFO(Last In First Out)的原则。
    压栈:栈的插入操作叫做进栈/压栈/入栈,入数据在栈顶。
    出栈:栈的删除操作叫做出栈。出数据也在栈顶。

    2.栈的实现

    栈的实现一般可以使用数组或者链表实现,相对而言数组的结构实现更优一些。因为数组在尾上插入数据的代价比较小。

     2.1定义一个动态栈

    1. typedef int STDataType;
    2. typedef struct Stack
    3. {
    4. STDataType* a;
    5. int top;
    6. int capacity;
    7. }ST;

    2.2栈的初始化

    1. void STInit(ST* ps)
    2. {
    3. assert(ps);
    4. ps->a = NULL;
    5. ps->top = 0;
    6. ps->capacity = 0;
    7. }

    2.3栈的销毁

    1. void STDestroy(ST* ps)
    2. {
    3. assert(ps);
    4. free(ps->a);
    5. ps->a = NULL;
    6. ps->top = ps->capacity = 0;
    7. }

    2.4数据进栈

    数据进栈的话首先要考虑一下是否需要扩容,所以先判断一下top是否等于capacity,如果满了的话再判断一下capacity是否是第一次扩容,如果是的话则扩容至4,不是的话则扩2倍,再对空间进行扩容,这里巧妙地利用了realloc这个库函数,因为如果需要扩容的这个空间是0,则相当于是malloc,扩容完之后就将数据放进top这个位置,然后再将top++,这样才会使得top一直是栈顶元素的下一个位置。

    1. void STPush(ST* ps, STDataType x)
    2. {
    3. assert(ps);
    4. if (ps->top == ps->capacity)
    5. {
    6. int newCapacity = ps->capacity == 0 ? 4:ps->capacity * 2;
    7. STDataType* tmp = (STDataType*) realloc(ps->a, sizeof(STDataType) * newCapacity);
    8. if (tmp == NULL)
    9. {
    10. perror("realloc fail");
    11. exit(-1);
    12. }
    13. ps->a = tmp;
    14. ps->capacity = newCapacity;
    15. }
    16. ps->a[ps->top] = x;
    17. ps->top++;
    18. }

    2.5数据出栈

    先保证这个栈不是空的,top>0才有数据可以出。出栈直接top--就行了。

    1. void STPop(ST* ps, STDataType x)
    2. {
    3. assert(ps);
    4. //空
    5. assert(ps->top > 0);
    6. --ps->top;
    7. }

    2.6栈的数据个数

    1. int STSize(ST* ps)
    2. {
    3. assert(ps);
    4. return ps->top;
    5. }

    2.7判断栈是否为空

    1. bool STEmpty(ST* ps)
    2. {
    3. assert(ps);
    4. return ps->top == 0;
    5. }

    2.8获取栈顶元素

    这里需要注意一下,栈顶元素的位置是top-1.

    1. STDataType STTop(ST* ps)
    2. {
    3. assert(ps);
    4. assert(ps->top > 0);
    5. return ps->a[ps->top - 1];
    6. }

    完整代码

    Stack.h:

    1. #pragma once
    2. #include
    3. #include
    4. #include
    5. #include
    6. typedef int STDataType;
    7. typedef struct Stack
    8. {
    9. STDataType* a;
    10. int top;
    11. int capacity;
    12. }ST;
    13. void STInit(ST* ps);
    14. void STDestroy(ST* ps);
    15. void STPush(ST* ps,STDataType x);
    16. void STPop(ST* ps);
    17. int STSize(ST* ps);
    18. bool STEmpty(ST* ps);
    19. STDataType STTop(ST* ps);

    Stack.c:

    1. void STInit(ST* ps)
    2. {
    3. assert(ps);
    4. ps->a = NULL;
    5. ps->top = 0;
    6. ps->capacity = 0;
    7. }
    8. void STDestroy(ST* ps)
    9. {
    10. assert(ps);
    11. free(ps->a);
    12. ps->a = NULL;
    13. ps->top = ps->capacity = 0;
    14. }
    15. void STPush(ST* ps, STDataType x)
    16. {
    17. assert(ps);
    18. if (ps->top == ps->capacity)
    19. {
    20. int newCapacity = ps->capacity == 0 ? 4:ps->capacity * 2;
    21. STDataType* tmp = (STDataType*) realloc(ps->a, sizeof(STDataType) * newCapacity);
    22. if (tmp == NULL)
    23. {
    24. perror("realloc fail");
    25. exit(-1);
    26. }
    27. ps->a = tmp;
    28. ps->capacity = newCapacity;
    29. }
    30. ps->a[ps->top] = x;
    31. ps->top++;
    32. }
    33. void STPop(ST* ps, STDataType x)
    34. {
    35. assert(ps);
    36. //空
    37. assert(ps->top > 0);
    38. --ps->top;
    39. }
    40. int STSize(ST* ps)
    41. {
    42. assert(ps);
    43. return ps->top;
    44. }
    45. bool STEmpty(ST* ps)
    46. {
    47. assert(ps);
    48. return ps->top == 0;
    49. }
    50. STDataType STTop(ST* ps)
    51. {
    52. assert(ps);
    53. assert(ps->top > 0);
    54. return ps->a[ps->top - 1];
    55. }

  • 相关阅读:
    awk常用统计命令
    TypeScript - 字符串的字面类型
    斯里兰卡投资促进部中国招商大使率考察团到访深兰科技
    2-11 基于matlab的BP-Adaboost的强分类器分类预测
    C++ 命名空间(namespace)
    Java开发工具&使用cmd安装MySQL
    Java类加载器
    bfs模板总结
    Connor学JVM - Java引用
    【跟小嘉学 Rust 编程】二十五、Rust命令行参数解析库(clap)
  • 原文地址:https://blog.csdn.net/2301_79035870/article/details/134557138