美文网首页
387. 字符串中的第一个唯一字符(Leecode)

387. 字符串中的第一个唯一字符(Leecode)

作者: scott_alpha | 来源:发表于2019-09-29 21:48 被阅读0次

题目:
给定一个字符串,找到它的第一个不重复的字符,并返回它的索引。如果不存在,则返回 -1。
注意事项:您可以假定该字符串只包含小写字母。
class Solution {
public int firstUniqChar(String s) {
int start;
int end;
int result = s.length();
for(int i=0; i<s.length();i++){
start = s.indexOf(s.charAt(i));
end = s.lastIndexOf(s.charAt(i));
if (start == end && start != -1){
return i;
}
}
return -1;
}
}
如下为Leecode官网标准答案:
class Solution {
public int firstUniqChar(String s) {
HashMap<Character, Integer> count = new HashMap<Character, Integer>();
int n = s.length();
// build hash map : character and how often it appears
for (int i = 0; i < n; i++) {
char c = s.charAt(i);
count.put(c, count.getOrDefault(c, 0) + 1);
}
// find the index
for (int i = 0; i < n; i++) {
if (count.get(s.charAt(i)) == 1)
return i;
}
return -1;
}
}
时间复杂度为O(n),空间复杂度为O(n)

相关文章

网友评论

      本文标题:387. 字符串中的第一个唯一字符(Leecode)

      本文链接:https://www.haomeiwen.com/subject/pqvqpctx.html