本题来自《剑指offer》 第一个只出现一次的字符
题目:
在一个字符串(0<=字符串长度<=10000,全部由字母组成)中找到第一个只出现一次的字符,并返回它的位置, 如果没有则返回 -1(需要区分大小写)
思路:
采用华哈希表的方式,python直接有count方法,可以直接统计得出。
c++采用数组的方式模拟哈希表,key为字符,value为次数。
C++ Code:
class Solution { public: int FirstNotRepeatingChar(string str) { const int tableSize = 256; //cache size unsigned int hashTable[tableSize]; //hash cache for (unsigned int i=0;i<tableSize;i++){ //loop cache hashTable[i] = 0; //set the inital value to 0 } unsigned int i = 0; while(str[i]!='