import java.util.*; public class Solution { Map<Character,Integer> map = new HashMap<>(); public int solve (String s) { map.put('+',1); map.put('-',1); map.put('*',2); map.put('(',3); map.put(')',3); return compute(toSuffi...