给定一个字符串,找到它的第一个不重复的字符,并返回它的索引。如果不存在,则返回 -1。
示例:
s = "leetcode"
返回 0
s = "loveleetcode"
返回 2
提示:你可以假定该字符串只包含小写字母。
来源:力扣(LeetCode)
链接:https://leetcode-cn.com/problems/first-unique-character-in-a-string
著作权归领扣网络所有。商业转载请联系官方授权,非商业转载请注明出处。
解题方法及思路
看见次数就hash。我用一个hashmap记录每个单词出现的次数,然后重头遍历字符串,遇到的第一个字符的次数为1的字符,返回它的位置,否则返回-1。
public class Solution {
public int firstUniqChar(String s) {
int res = -1;
// 记录字符出现次数
HashMap<Character, Integer> hashMap = new HashMap();
for (int i = 0; i < s.length(); i++) {
if (hashMap.containsKey(s.charAt(i))) {
hashMap.put(s.charAt(i), hashMap.get(s.charAt(i)) + 1);
} else {
hashMap.put(s.charAt(i), 1);
}
}
// 寻找不重复值
for (int i = 0; i < s.length(); i++) {
if (hashMap.get(s.charAt(i)) == 1) {
res = i;
break;
}
}
return res;
}
}
结果如下: