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

O(n)时间效率寻找字符串中第一次出现一次的字符

时间:2015-04-08 01:10:13      阅读:114      评论:0      收藏:0      [点我收藏+]

标签:哈希

思路:我们利用简单的哈希映射来解决这个问题

建立一个数组,用数组的下标对应每个字符的值,然后扫描字符串,给每个字符的值对应的数组的位置的数加1,最后再扫描数组,遇到第一个1时,就可以找到对应的字符了


实现代码如下:


#include<iostream>
#include<cassert>
using namespace std;

char findch(const char *str, int len)
{
	assert(str != NULL);

	int ar[256] = {0};//建立简单的哈希映射 下标代表256个字符
	const char *p = str;

	while(*p != '\0')
	{
		ar[*p++]++;
	}

	int i = 0;
	for(i; i<256; ++i)
	{
		if(ar[i] == 1)
		{
			break;
		}
	}

	if(i != 256)
	{
		return i;
	}
	else
	{
		throw std::exception();
	}
}

int main()
{
	const char *p = "abaccdeff";
	cout<<findch(p, strlen(p))<<endl;

	const char *q = "a";
	cout<<findch(q, strlen(p))<<endl;

	//const char *r = "aaaaaaaaa";
	//cout<<findch(r, strlen(p))<<endl;

	//const char *s = "";
	//cout<<findch(s, strlen(p))<<endl;

	const char *t = "aaaaaaaaaaaabcdefg";
	cout<<findch(t, strlen(t))<<endl;

	return 0;
}


O(n)时间效率寻找字符串中第一次出现一次的字符

标签:哈希

原文地址:http://blog.csdn.net/huai1693838234/article/details/44928725

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