摘要: #include <stdio.h> #include <stdlib.h> #define MaxSize 50 typedef int ElemType; typedef struct{ ElemType data[MaxSize];//数组 int top; }SqStack; void In 阅读全文
posted @ 2021-04-23 21:33 福纨 阅读(84) 评论(0) 推荐(0)