简单的中缀转前缀表达式并计算的程序

#include <stdio.h> #include <stdlib.h> #include<math.h> #define Max 100 typedef char ElementType; typedef double ElementType1;//用于计算前缀表达式 typedef struct stk { ElementType data; struct stk* ne
相关文章
相关标签/搜索