摘要: #include<stdio.h> #define MaxSize 10 typedef char ElemType; typedef struct { ElemType data[MaxSize]; int top; }SList; void InitSList(SList &S) { S.top 阅读全文
posted @ 2020-07-03 22:04 石乐智先生 阅读(300) 评论(0) 推荐(0)