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

给定一个字符串,找到第一个只出现一次的字符的下标,找不到输出-1。

时间:2017-06-25 10:16:55      阅读:112      评论:0      收藏:0      [点我收藏+]

标签:++   bre   break   cout   一个   charindex   clu   main   names   

1. 给定一个字符串,找到第一个只出现一次的字符的下标,找不到输出-1。

sample:

输入:“abcdefcba”

输出:3

解法:先遍历字符串,用一个map记录每个字符出现的次数,再次遍历字符串,找到第一个只出现一次的字符,复杂度为O(n)。

 

#include <iostream>
#include <string>
#include <cstring>
#include <map>
using namespace std;

int getCharIndex(const char *str)
{
map<char, int> cmap;
int length = strlen(str);
for (int i = 0; i < length; ++i)
++ cmap[str[i]];

int ret = -1;
for (int i = 0; i < length; ++i)
if (cmap[str[i]] == 1)
{
ret = i;
break;
}

return ret;
}

int main()
{
string str;
cin >> str;
cout << getCharIndex(str.c_str()) << endl;
}

给定一个字符串,找到第一个只出现一次的字符的下标,找不到输出-1。

标签:++   bre   break   cout   一个   charindex   clu   main   names   

原文地址:http://www.cnblogs.com/code666/p/7076068.html

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