JAVA解法一:用暴力的api做去,indexOf, lastIndexOf 第一次出现的位置和最后一次出现的位置是同一个位置即为所求,当然时间复杂度稍高,不是本题考察的目的 public class Solution { public int FirstNotRepeatingChar(String str) { for (int i = 0; i < str.length(); i++) { char t = str.charAt(i); if (str.indexOf(t) == i && st...