劍指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
相關文章
相關標籤/搜索