import java.util.*; public class Solution { public int solve (String s) { Map<Character,Integer> map = new HashMap<>(); map.put('-',1); map.put('+',1); map.put('*',2); map.put('/',2); // write code here // 存放运算符,(直接进入栈,继续...