摘要: //利用程序中缀转后缀#include<stdio.h>#include<stdlib.h> #define ElemType char#define MaxSize 10 typedef struct{ ElemType data[MaxSize]; int top;} SqStack; //初始 阅读全文
posted @ 2022-07-18 14:50 天天掉头发 阅读(35) 评论(0) 推荐(0) 编辑
返回顶端