剑指offer二十四:第一个只出现一次的字符

    #include<iostream> using namespace std; char firstNotrepeatChar(char* string) { if (string == NULL) return NULL; const int tableSize = 256; unsigned int hashTable[tableSize]; for (int i = 0
相关文章
相关标签/搜索