1. 可能因为int转char的过程中会有数据大小的溢出所以只有0.8.的AC  public static void getAns(String str) {         LinkedList<Character> stack = new LinkedList<>();         LinkedList<Integer> list = new LinkedList<>();         int ans = 0;         for (int i = 0; i < str.length(); i++) {          ...