当前位置: 首页 > article >正文

C语言基础(二十四)

堆栈(Stack)是一种遵循后进先出(LIFO, Last In First Out)原则的数据结构。堆栈的主要操作包括压栈(Push)、弹栈(Pop)、查看栈顶元素(Peek/Top)等。C语言标准库并没有直接提供堆栈的实现,但可以使用数组或者链表手动实现堆栈。

测试代码1:

#include "date.h" 
#include <stdio.h>  
#include <stdlib.h>  
#include <stdbool.h>  
  
#define MAX_SIZE 100 // 定义堆栈的最大容量  
  
typedef struct {  
    int items[MAX_SIZE];  
    int top;  
} Stack;  
  
// 初始化堆栈  
void initStack(Stack *s) {  
    s->top = -1;  
}  
  
// 判断堆栈是否为空  
bool isEmpty(Stack *s) {  
    return s->top == -1;  
}  
  
// 判断堆栈是否已满  
bool isFull(Stack *s) {  
    return s->top == MAX_SIZE - 1;  
}  
  
// 入栈  
bool push(Stack *s, int item) {  
    if (isFull(s)) {  
        printf("Stack overflow\n");  
        return false;  
    }  
    s->items[++s->top] = item;  
    printf("Pushed: %d\n", item);  
    return true;  
}  
  
// 出栈  
bool pop(Stack *s, int *item) {  
    if (isEmpty(s)) {  
        printf("Stack underflow\n");  
        return false;  
    }  
    *item = s->items[s->top--];  
    printf("Popped: %d\n", *item);  
    return true;  
}  
  
// 查看栈顶元素  
bool peek(Stack *s, int *item) {  
    if (isEmpty(s)) {  
        printf("Stack is empty\n");  
        return false;  
    }  
    *item = s->items[s->top];  
    printf("Top element is: %d\n", *item);  
    return true;  
}  
  
int main() {  

    int time = getTime();
    Stack s;  
    initStack(&s);  
  
    // 入栈操作  
    push(&s, 50);  
    push(&s, 2);  
    push(&s, 30);  
    push(&s, 10); 
    push(&s, 88); 
    // 查看栈顶元素  
    int topElem;  
    peek(&s, &topElem);  
  
    // 出栈操作  
    int poppedElem;  
    while (!isEmpty(&s)) {  
        pop(&s, &poppedElem);  
    }  
  
    return 0;  
}

运行结果如下:

 

测试代码2:

#include "date.h"
#include <stdio.h>  
#include <stdlib.h>  
  
typedef struct Node {  
    int data;  
    struct Node* next;  
} Node;  
  
typedef struct {  
    Node* top;  
} Stack;  
  
// 初始化堆栈  
void initStack(Stack *s) {  
    s->top = NULL;  
}  
  
// 判断堆栈是否为空  
bool isEmpty(Stack *s) {  
    return s->top == NULL;  
}  
  
// 入栈  
void push(Stack *s, int item) {  
    Node* newNode = (Node*)malloc(sizeof(Node));  
    if (newNode == NULL) {  
        printf("Memory allocation failed\n");  
        exit(1); // 或者其他错误处理  
    }  
    newNode->data = item;  
    newNode->next = s->top;  
    s->top = newNode;  
    printf("Pushed: %d\n", item);  
}  
  
// 出栈  
bool pop(Stack *s, int *item) {  
    if (isEmpty(s)) {  
        printf("Stack is empty\n");  
        return false;  
    }  
    Node* temp = s->top;  
    *item = temp->data;  
    s->top = temp->next;  
    free(temp);  
    printf("Popped: %d\n", *item);  
    return true;  
}  
  
// 查看栈顶元素  
bool peek(Stack *s, int *item) {  
    if (isEmpty(s)) {  
        printf("Stack is empty\n");  
        return false;  
    }  
    *item = s->top->data;  
    printf("Top element is: %d\n", *item);  
    return true;  
}  
  
// 清理堆栈
void clearStack(Stack *s) {  
    Node* current = s->top;  
    Node* next;  
    while (current != NULL) {  
        next = current->next;  
        free(current);  
        current = next;  
    }  
    s->top = NULL;  
}  
  
int main() {  

    int time = getTime();
    Stack s;  
    initStack(&s);  
  
    // 入栈操作  
    push(&s, 11);  
    push(&s, 80);  
    push(&s, 35);  
    push(&s, 38);
    push(&s, 62);
    // 查看栈顶元素  
    int topElem;  
    peek(&s, &topElem);  
  
    // 出栈操作  
    int poppedElem;  
    while (!isEmpty(&s)) {  
        pop(&s, &poppedElem);  
    }  
  
    // 如果不再需要堆栈,应该调用clearStack释放内存 
	// clearStack(&s); 
    // 本例中,程序将在main函数结束时自动结束,操作系统会回收所有内存。 
  
    return 0;  
}

运行结果如下:

 

 

 


http://www.kler.cn/a/281929.html

相关文章:

  • mysql 的乐观锁和 mvcc 是一回事吗
  • 台式电脑没有声音怎么办?台式电脑没有声音解决详解
  • 哋它亢SEO技术分析:如何提升网站在搜索引擎中的可见性
  • DataStream编程模型之数据源、数据转换、数据输出
  • ATmaga8单片机Pt100温度计源程序+Proteus仿真设计
  • 28.<Spring博客系统⑤(部署的整个过程(CentOS))>
  • 数据仓库系列 1:什么是数据仓库,它与传统数据库有什么不同?
  • 如何在 Android 智能手机上恢复已删除的图片
  • 基于SpringBoot的在线答疑系统
  • python基础(11文件读取)
  • 读《Visual Whole-Body for Loco-Manipulation》①train
  • dbeaver数据库工具配置连接openGauss5.X
  • 02_TensorFlow2 Eager Execution:让AI编程从‘慢条斯理’变‘急不可耐’的神奇魔法!
  • TQRFSOC开发板47DR LWIP自环测试
  • css之grid布局(网格布局)
  • Leetcode面试经典150题-36.有效数独
  • Vue 3 CLI TypeScript 项目搭建全攻略
  • 【LINUX】ifconfig -a查看到的发送、接收包数和字数字节数在驱动层代码大概位置
  • 深度学习--自监督学习
  • Python循环结束语句 break语句 continue语句
  • 关于el-table的扩展表格expand
  • spring boot 集成es使用
  • day37动态规划+三.Github链接本地仓库
  • [英语单词] feedback
  • Qt QToolButton 和 QPushButton的区别和联系
  • 网络安全技术新趋势:如何应对不断演变的威胁?