poj1686 Lazy Math Instructor
摘要:
1 #include<map> 2 #include<stack> 3 #include<cctype> 4 #include<iostream> 5 using namespace std; 6 map<char,int> m; //从字符映射到数字 7 string s1,s2,r1,r2; 8 string transform(string s)//把表达式转化为后缀表达式方便计算 9 {10 int i,j,len;11 char c[81];12 stack<char> exp; //定义一个字符栈,存放运算符 阅读全文
posted @ 2012-08-07 21:32 小花熊 阅读(609) 评论(1) 推荐(1) 编辑