解题思路:用两个栈来模拟表达式运算的过程;一个数字栈和一个符号栈;具体运算过程如注释所示: public class Solution { /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * 返回表达式的值 * @param s string字符串 待计算的表达式 * @return int整型 */ public int solve (String s) { // write code here char[] c=s.toCharArray(); ...