栈的实际应用
文章平均质量分 78
C?est bien d?�tre seul
这个作者很懒,什么都没留下…
展开
-
C语言 数据结构 利用栈实现对简单中缀表达式转后缀,并计算结果(仅支持一位整数)
利用栈实现对简单中缀表达式转后缀,并计算结果(仅支持一位整数)原创 2022-05-01 19:54:06 · 242 阅读 · 0 评论 -
C语言 数据结构 栈的应用(括号匹配)
#include<stdio.h> #include<stdlib.h> #define MaxSize 10 #define true 1 #define false 0 typedef char ElemType; typedef int bool; typedef struct { ElemType data[MaxSize]; int top; }Stack, * SqStack; //初始化栈 bool InitStack(SqStack* S) {...原创 2022-05-01 15:29:35 · 184 阅读 · 0 评论