給定一個字符串,找到它的第一個不重複的字符,並返回它的索引。若是不存在,則返回 -1。java
Given a string, find the first non-repeating character in it and return it's index. If it doesn't exist, return -1.python
案例:數組
s = "leetcode"
返回 0.
s = "loveleetcode",
返回 2.
複製代碼
**注意事項:**您能夠假定該字符串只包含小寫字母。bash
Note: You may assume the string contain only lowercase letters.微信
很簡單的題,無非就是對字符串的字母進行頻率統計,找到出現頻率爲1 的字母索引。數據結構
藉助哈希映射兩次遍歷完成。第一次遍歷進行字母頻率統計,Hash Map 的Key 爲字母,Value 爲出現頻率。第二次遍歷找到頻率爲 1 的字母索引返回便可。函數
不一樣於單詞頻率統計,字母一共只有 26 個,因此能夠直接利用 ASii 碼錶裏小寫字母數值從 97~122,直接用 int 型數組映射。創建映射:索引爲 小寫字母的 ASii 碼值,存儲值爲出現頻率。spa
Java:code
class Solution {
public int firstUniqChar(String s) {
char[] chars = s.toCharArray();//轉成 Char 數組
Map<Character, Integer> map = new HashMap<>();
for (Character c: chars) map.put(c, map.getOrDefault(c, 0) + 1);//頻率統計
for (int i = 0; i < chars.length; i++) {
if(map.get(chars[i])==1) return i;//找到詞頻爲1的字母(只出現一次)返回其索引
}
return -1;
}
}
複製代碼
Python:cdn
class Solution:
def firstUniqChar(self, s):
count = collections.Counter(s)# 該函數就是Python基礎庫裏詞頻統計的集成函數
index = 0
for ch in s:
if count[ch] == 1:
return index
else:
index += 1
return -1
複製代碼
Java:
class Solution {
public int firstUniqChar(String s) {
char[] chars = s.toCharArray();
int base = 97;
int[] loc = new int[26];
for (char c:chars) loc[c - base] += 1;
for (int i = 0; i < chars.length; i++) {
if(loc[chars[i]-base]==1) return i;
}
return -1;
}
}
複製代碼
Python 基礎數據結構裏沒有 char 型,強行使用chr(i)
轉換,只會致使效率更低
Java:
利用 Java 字符串集成操做函數解題,很巧妙,效率也很高。
其中:
indexOf(): 返回該元素第一次出現的索引,沒有則返回 -1
lastIndex(): 返回該元素最後一次出現的索引,沒有則返回 -1
class Solution {
public int firstUniqChar(String s) {
int res = s.length();
for (int i = 'a'; i <= 'z'; i++) {
int firstIndex = s.indexOf((char)i);
if (firstIndex == -1) continue;
int lastIndex = s.lastIndexOf((char)i);
if (firstIndex == lastIndex) {//兩次索引值相同則證實該字母只出現一次
res = Math.min(firstIndex, res);//res 爲只出現一次的字母中索引值最小的
}
}
return res == s.length() ? -1 : res;
}
}
複製代碼
歡迎關注微信公衆號: 愛寫Bug