摘要:
题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=1296不知为什么今天人品特别好。。。1Y....不过又去搜了一下别人的代码。。。orz。。。我的渣代码啊。。。还是贴一下吧。。。View Code 1 #define _CRT_SECURE_NO_WARNINGS 2 #include<iostream> 3 #include<cstring> 4 #include<cstring> 5 #include<cstdio> 6 #include<cmath> 7 using namespac 阅读全文
摘要:
题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=1237思路:模拟栈,先处理*和/的,算出结果后在入栈,将‘+’和‘-’入s栈,最后由于考虑加减运算符的优先级,还有倒一下栈。。这样就一共用到了4个栈。。。View Code 1 #define _CRT_SECURE_NO_WARNINGS 2 #include<iostream> 3 #include<cstdio> 4 #include<cstring> 5 #include<cmath> 6 #include<stack> 7 usi 阅读全文