字符串中的第一个唯一字符
给定一个字符串 s
,找到 它的第一个不重复的字符,并返回它的索引 。如果不存在,则返回 -1
。
s
只包含小写字母
示例 1:
输入: s = "leetcode" 输出: 0
示例 2:
输入: s = "loveleetcode" 输出: 2
示例 3:
输入: s = "aabb" 输出: -1
由于只包含小写字母,创建一个大小为26的数组,记录字母个数
class Solution {
public:int firstUniqChar(string s) {//使用映射的方式统计次数int count[26]={0};for(auto ch:s){count[ch -'a']++;}for(size_t i=0;i<s.size();++i){if(count[s[i]-'a']==1)return i;}return -1;}
};