给定一个字符串,找到第一个只出现一次的字符的下标,找不到输出-1。
Posted code666
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了给定一个字符串,找到第一个只出现一次的字符的下标,找不到输出-1。相关的知识,希望对你有一定的参考价值。
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。的主要内容,如果未能解决你的问题,请参考以下文章