链接: 查找第一个唯一的字符
文章来源:https://www.toymoban.com/news/detail-513065.html
class Solution {
public:
int firstUniqChar(string s) {
int coutArr[26] = {0};
for(auto ch : s)
{
coutArr[ch - 'a']++;
}
for(int i = 0; i < s.size(); ++i)
{
if(coutArr[s[i] - 'a'] == 1)
{
return i;
}
}
return -1;
}
};
因为本题要求的只有小写字母,可以利用数组来实现,将每个字母出现的次数都添加到对应的下标位置。下标为0的位置为字符a,下标为1的位置为字符b,已此类推。文章来源地址https://www.toymoban.com/news/detail-513065.html
到了这里,关于leetcode查找第一个唯一的字符的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!