栈
hey超级巨星
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
数据结构栈的加减乘除计算式处理
/* 栈的加减乘除有关算法 @hey_超级巨星 */ #include <stdio.h> #include<stdlib.h> #define MAXSIZE 50 typedef struct { char data[MAXSIZE]; int top; }*Stack; void InitStack(Stack &S) { S->top = -1;...原创 2020-04-19 16:16:12 · 986 阅读 · 0 评论 -
C语言数据结构栈的顺序存储与链式存储的基本函数
/* 栈的顺序存储和链栈 //@hey超级巨星 */ #include<stdio.h> #include<stdlib.h> typedef int Elemtype; typedef int Status; #define OK 1; #define ERROR 0; #define STACK_SIZE 10 #define STACKINCREASE 10 type...原创 2020-02-09 15:52:23 · 238 阅读 · 0 评论
分享