完成了表达式计算小程序

This commit is contained in:
lzy
2024-04-17 15:12:54 +08:00
parent 9fd115d30b
commit 1736d29814
4 changed files with 282 additions and 0 deletions

View File

@@ -0,0 +1,30 @@
#ifndef SQSTACK_H__
#define SQSTACK_H__
#define MAXSIZE 32
typedef int datatype;
typedef struct node_st
{
datatype data[MAXSIZE];
int top;
} sqstack;
sqstack *st_create(void);
int st_isempty(sqstack *);
int st_push(sqstack *, datatype *);
/* 取出栈顶元素 */
int st_pop(sqstack *, datatype *);
/* 查看栈顶元素 */
int st_top(sqstack *, datatype *);
void st_travel(sqstack *);
void st_destroy(sqstack *);
#endif