第一个只出现一次的字符(Hash)

#include
#include
using namespace std;

//题目要求:在字符串中找出第一个只出现一次的字符,如输入"abaccdeff",则输出b。
//传统方法的时间复杂度为o(n^2)
//现在我们要用o(n)的方法来解决这个问题
//运用hash表,用key代表字符,value代表字符出现的次数

char Firstnotrepeatingchar(char *pString){
	if(pString == NULL) return '\0';
	const int tableSize = 256;//2的8次方,主要是一个字符占8个字
	unsigned int hashTable[tableSize];
	for(unsigned int i=0;i

你可能感兴趣的:(数据结构,C/C++)