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

35.第一个只出现一次的字符

时间:2015-07-10 16:40:59      阅读:106      评论:0      收藏:0      [点我收藏+]

标签:hashtable   数组   

技术分享

技术分享技术分享

char FirstNotRepeatingChar(char* pString)
{
if (pString == NULL)
return ‘\0‘;
const int tableSize = 256;
unsigned int hashTable[tableSize];
for (unsigned int i = 0; i < tableSize; ++i)
hashTable[i] = 0;
char* pHashKey = pString;
while (*(pHashKey) != ‘\0‘)
hashTable[*(pHashKey++)]++;
pHashKey = pString;
while (*pHashKey != ‘\0‘)
{
if (hashtTable[*pHashKey] == 1)
return *pHashKey;
pHashKey++;
}
return ‘\0‘;
}

技术分享

技术分享技术分享


版权声明:本文为博主原创文章,未经博主允许不得转载。

35.第一个只出现一次的字符

标签:hashtable   数组   

原文地址:http://blog.csdn.net/wangfengfan1/article/details/46831459

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