↩ revert:

This commit is contained in:
lzy
2024-05-27 02:33:10 +08:00
parent 2336f88407
commit a277dec1fe
136 changed files with 606 additions and 606 deletions

View File

@@ -11,20 +11,20 @@ typedef struct node_st
int top;
} sqstack;
sqstack* st_create(void);
sqstack *st_create(void);
int st_isempty(sqstack*);
int st_isempty(sqstack *);
int st_push(sqstack*, datatype*);
int st_push(sqstack *, datatype *);
/* 取出栈顶元素 */
int st_pop(sqstack*, datatype*);
int st_pop(sqstack *, datatype *);
/* 查看栈顶元素 */
int st_top(sqstack*, datatype*);
int st_top(sqstack *, datatype *);
void st_travel(sqstack*);
void st_travel(sqstack *);
void st_destroy(sqstack*);
void st_destroy(sqstack *);
#endif