摘要: #include<stdio.h> #include<malloc.h> #include<stdlib.h> typedef int SElemType; typedef struct StackNode { SElemType data; struct StackNode* next; }Sta 阅读全文
posted @ 2021-11-06 21:10 CharHao 阅读(43) 评论(0) 推荐(0) 编辑
摘要: #include<stdio.h> #include<malloc.h> #include<stdlib.h> #define MAXSIZE 100 typedef int SElemType; typedef struct SqStack { SElemType* base;//栈底指针 SEl 阅读全文
posted @ 2021-11-06 20:53 CharHao 阅读(55) 评论(0) 推荐(0) 编辑