第一个只出现一次的字符
Posted tu9oh0st
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了第一个只出现一次的字符相关的知识,希望对你有一定的参考价值。
题目描述
在一个字符串(0<=字符串长度<=10000,全部由字母组成)中找到第一个只出现一次的字符,并返回它的位置, 如果没有则返回 -1(需要区分大小写).
分析
贴出代码
import java.util.HashMap;
public class Solution {
public int FirstNotRepeatingChar(String str) {
if (str == null){
return -1;
}
HashMap<Character, Integer> map = new HashMap<>();
for (int i = 0; i < str.length(); i++){
if (map.containsKey(str.charAt(i))){
int time = map.get(str.charAt(i));
map.put(str.charAt(i),++time);
}
else{
map.put(str.charAt(i),1);
}
}
int i = 0;
for (; i <str.length(); i++){
if (map.get(str.charAt(i)) == 1){
return i;
}
}
return -1;
}
}
以上是关于第一个只出现一次的字符的主要内容,如果未能解决你的问题,请参考以下文章