🌈 style:

This commit is contained in:
lzy
2024-05-26 15:39:14 +08:00
parent 6f28a3384a
commit a57bbdb4c1
156 changed files with 765 additions and 770 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