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

LeetCode(387)First Unique Character in a String

时间:2016-08-23 20:36:15      阅读:199      评论:0      收藏:0      [点我收藏+]

标签:

题目

Given a string, find the first non-repeating character in it and return it‘s index. If it doesn‘t exist, return -1.

Examples:

s = "leetcode"
return 0.

s = "loveleetcode",
return 2.

Note: You may assume the string contain only lowercase letters.

分析

求给定字符串中第一个只出现一次的字符。
哈希思想。

代码

/*
387. First Unique Character in a String
*/

#include <iostream>
#include <cstdlib>
#include <string>
#include <vector>
#include <map>

using namespace std;
class Solution {
public:
	/*方法一,借助哈希表*/
	int firstUniqChar1(string s) {
		if (s.empty())
			return -1;

		vector<int> v(256, 0);
		int len = s.length();
		for (int i = 0; i < len; ++i)
			++v[s[i]];

		for (int i = 0; i < len; ++i)
			if (v[s[i]] == 1)
				return i;
		return -1;
	}
	/*方法二:*/
	int firstUniqChar(string s) {
		if (s.empty())
			return -1;
		int len = s.length();
		map<char, int> sm;
		for (int i = 0; i < len; ++i)
		{
			++sm[s[i]];
		}//for

		for (int i = 0; i < len; ++i)
			if (sm[s[i]] == 1)
				return i;
		return -1;
	}

	
};


LeetCode(387)First Unique Character in a String

标签:

原文地址:http://blog.csdn.net/fly_yr/article/details/52294189

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