题解 | #第一个只出现一次的字符#

第一个只出现一次的字符

http://www.nowcoder.com/practice/1c82e8cf713b4bbeb2a5b31cf5b0417c

描述
在一个字符串(0<=字符串长度<=10000,全部由字母组成)中找到第一个只出现一次的字符,并返回它的位置, 如果没有则返回 -1(需要区分大小写).(从0开始计数)

思路是从第一个字符开始找,以此对后面进行遍历,如果出现了相同的,则继续判断下一个字符,但是这里需要将已判别有重复的字符储存在HashSet中

import java.util.Set;
import java.util.HashSet;

public class Solution {
    public int FirstNotRepeatingChar(String str) {
        Set<Character> charFound = new HashSet<Character>();
        for(int i = 0; i < str.length(); i++){
            Character tempChar = str.charAt(i);
            if(!charFound.contains(tempChar)){
                for(int j = i + 1; j < str.length(); j++){
                    if(str.charAt(j) == tempChar){
                        charFound.add(tempChar);
                        break;
                    }
                }
                if(!charFound.contains(tempChar)) return i;
            }
        }
        return -1;
    }
}
全部评论

相关推荐

拒绝无效加班的小师弟很中意你:求职意向没有,年龄、课程冗余信息可以删掉,需要提升项目经历。排版需要修改。
点赞 评论 收藏
分享
手撕没做出来是不是一定挂
Chrispp3:不会,写出来也不一定过
点赞 评论 收藏
分享
评论
1
收藏
分享
牛客网
牛客企业服务