码迷,mamicode.com
首页 > 其他好文 > 详细

剑指offer-面试题50-第一个只出现一次的字符-哈希表

时间:2019-12-17 20:38:51      阅读:94      评论:0      收藏:0      [点我收藏+]

标签:namespace   ace   return   har   字符串   map遍历   bsp   cout   ios   

/*
题目:
	求字符串第一个只出现一次的字符。
*/
/*
思路:
	使用map遍历两次,第一次计数,第二次找到计数为1的第一个字符。
*/
#include<iostream>
#include<cstring>
#include<vector>
#include<algorithm>
#include<map>


using namespace std;


char FirstNotRepeatingChar(string str){
    map<char,int> myMap;
    int len = str.size();
    if(len == 0) throw("invalid parameter");

    for(int i = 0; i < len; i++){
        if(myMap.count(str[i])){
            myMap[str[i]]++;
        }else{
            myMap[str[i]] = 1;
        }
    }

    for(int i = 0; i < len; i++){
        if(myMap[str[i]] == 1){
            return str[i];
        }
    }


}

int main(){
    string str="abaccdeff";
    cout<<FirstNotRepeatingChar(str);

    return 0;
}

    

剑指offer-面试题50-第一个只出现一次的字符-哈希表

标签:namespace   ace   return   har   字符串   map遍历   bsp   cout   ios   

原文地址:https://www.cnblogs.com/buaaZhhx/p/12056297.html

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