码迷,mamicode.com
首页 > 编程语言 > 详细

leetcode387 C++ 84ms 字符串中的第一个唯一字符

时间:2018-07-26 21:07:45      阅读:204      评论:0      收藏:0      [点我收藏+]

标签:ring   else   tco   auto   int   字符串   count   class   stun   

class Solution {
public:
    int firstUniqChar(string s) {
        map<char, int> a;
            for(auto c:s){
                if(!a.count(c)){
                    a[c] = 1;
                }
                else{
                    a[c]++;
                }
            }

            for(int i=0;i<s.size();i++){
                if(a[s[i]]==1){
                    return i;
                }
            }

        
        return -1;
    }
};

leetcode387 C++ 84ms 字符串中的第一个唯一字符

标签:ring   else   tco   auto   int   字符串   count   class   stun   

原文地址:https://www.cnblogs.com/theodoric008/p/9373842.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!