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

编程算法 - 第一个只出现一次的字符 代码(C)

时间:2014-07-04 07:50:21      阅读:174      评论:0      收藏:0      [点我收藏+]

标签:mystra   编程算法   第一个只出现一次的字符   代码   c   

第一个只出现一次的字符 代码(C)


本文地址: http://blog.csdn.net/caroline_wendy


题目: 在字符串中找出第一个只出现一次的字符.


字符是char类型, 所以匹配256种可能, 采用hash表, 计算出现的次数, 再找到第一次出现的字符.


代码:

/*
 * main.cpp
 *
 *  Created on: 2014.6.12
 *      Author: Spike
 */

/*eclipse cdt, gcc 4.8.1*/

#include <stdio.h>
#include <stdlib.h>
#include <string.h>

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

int main(void)
{
	char pString[] = "abaccdeff";
	char result =  FirstNotRepeatingChar (pString);
    printf("result = %c\n", result);

    return 0;
}

输出:

result = b



bubuko.com,布布扣





编程算法 - 第一个只出现一次的字符 代码(C),布布扣,bubuko.com

编程算法 - 第一个只出现一次的字符 代码(C)

标签:mystra   编程算法   第一个只出现一次的字符   代码   c   

原文地址:http://blog.csdn.net/caroline_wendy/article/details/36653537

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