剑指offer-第一个只出现一次的字符

Posted 月半榨菜

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了剑指offer-第一个只出现一次的字符相关的知识,希望对你有一定的参考价值。

题目描述

在一个字符串(0<=字符串长度<=10000,全部由字母组成)中找到第一个只出现一次的字符,并返回它的位置, 如果没有则返回 -1(需要区分大小写).
 
使用map记录每个字符出现的次数,并查询第一个出现一次的字符
 1 public int FirstNotRepeatingChar(String str) {//map my
 2         LinkedHashMap<Character,Integer> map = new LinkedHashMap<>();
 3         for(int i=0;i<str.length();i++){
 4             char c = str.charAt(i);
 5             if(map.containsKey(c)){
 6                 map.put(c,map.get(c)+1);
 7             }
 8             else{
 9                 map.put(c,1);
10             }
11         }
12         Character c = null;
13         Iterator iter =map.entrySet().iterator();
14         while(iter.hasNext()){
15             Map.Entry entry = (Map.Entry) iter.next();
16             if(1 == (Integer)entry.getValue()){
17                 c = (Character) entry.getKey();
18                 break;
19             }
20         }
21         int re = -1;
22         if(c!=null){
23             for(int i=0;i<str.length();i++){
24                 if(c ==str.charAt(i)){
25                     re = i;
26                     break;
27                 }
28             }
29         }
30         return re;
31     }

 

优化后

public int FirstNotRepeatingChar(String str) {//map mytip
        Map<Character,Integer> map = new HashMap<>();
        for(int i=0;i<str.length();i++){
            char c = str.charAt(i);
            if(map.containsKey(c)){
                map.put(c,map.get(c)+1);
            }
            else{
                map.put(c,1);
            }
        }
        int re = -1;
        for(int i=0;i<str.length();i++){
            if(map.get(str.charAt(i))==1){
                re = i;
                break;
            }
        }
        return re;
    }

 

 

以上是关于剑指offer-第一个只出现一次的字符的主要内容,如果未能解决你的问题,请参考以下文章

剑指Offer-第一个只出现一次的字符位置

剑指Offer——第一个只出现一次的字符

剑指offer-第一个只出现一次的字符

[剑指offer]面试题35:第一个只出现一次的字符

剑指Offer--第50题 第一次只出现一次的字符

剑指offer34:第一个只出现一次的字符的位置