给定一个字符串,找到它的第一个不重复的字符,并返回它的索引。如果不存在,则返回 -1。
案例:
s = "leetcode"
返回 0.
s = "loveleetcode",
返回 2.
class Solution {
public int firstUniqChar(String s) {
int[] count = new int[128];
for (char c : s.toCharArray()){
count[c]++;
}
int index = -1;
for (char c : s.toCharArray()){
index++;
if(count[c] == 1){
return index;
}
}
return -1;
}
}
最后
以上就是开放康乃馨最近收集整理的关于字符串中唯一不重复的字符 -----leetcode算法(简单)的全部内容,更多相关字符串中唯一不重复的字符内容请搜索靠谱客的其他文章。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复