摘要: 1 #include <stdio.h> 2 #include <string.h> 3 #include <stdlib.h> 4 #include <ctype.h> 5 #include <stack> 6 usingnamespace std; 7 8 stack<float> OperandStack; 9 stack<char> OperatorStack; 10 11 char priority[]={'(', ')', '', '+' 阅读全文
posted @ 2011-08-18 23:01 IT屁民 阅读(750) 评论(0) 推荐(1) 编辑