数据结构007

算术表达式求值 1.将用户输入的任何一个合法的算术表达式转换为后缀表达式 2.输出后缀表达式; 3.计算并输出后缀表达式的值 如下为相关代码:git #include <stdio.h> #include <stdlib.h> #include <string.h> #define MAX 100 #define ERROR -1 char SY[MAX],CH[MAX]; double DT
相关文章
相关标签/搜索