劍指offer--面試題35:第一個只出現一次的字符

  在一個字符串(1<=字符串長度<=10000,所有由大小寫字母組成)中找到第一個只出現一次的字符,並返回它的位置   web public class FirstNotRepeatingCharSolution { //哈希表實現 public int FirstNotRepeatingChar(String str) { if(str.length()==0
相關文章
相關標籤/搜索