码迷,mamicode.com
首页 > 编程语言 > 详细

剑指Offer-33.第一个只出现一次的字符(C++/Java)

时间:2019-12-04 01:21:08      阅读:66      评论:0      收藏:0      [点我收藏+]

标签:程序   nta   存储   ati   port   new   pre   lse   key   

题目:

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

分析:

遍历字符串,利用Hashmap将每一个字符出现的值存储起来,然后再遍历字符串,返回第一个字符值为1的索引即可。

程序:

C++

class Solution {
public:
    int FirstNotRepeatingChar(string str) {
        for(int i = 0; i < str.size(); ++i){
            m[str[i]]++;
        }
        for(int i = 0; i < str.size(); ++i){
            if(m[str[i]] == 1)
                return i;
        }
        return -1;
    }
private:
    map<char, int> m;
};

Java

import java.util.*;
public class Solution {
    public int FirstNotRepeatingChar(String str) {
        for(int i = 0; i < str.length(); ++i) {
            if(map.containsKey(str.charAt(i))){
                int count = map.get(str.charAt(i));
                map.put(str.charAt(i), ++count);
            }
            else {
                map.put(str.charAt(i), 1);
            }
        }
        for(int i = 0; i < str.length(); ++i) {
            if(map.get(str.charAt(i)) == 1) {
                return i;
            }
        }
        return -1;
    }
    private HashMap<Character, Integer> map = new HashMap<>();
}

 

剑指Offer-33.第一个只出现一次的字符(C++/Java)

标签:程序   nta   存储   ati   port   new   pre   lse   key   

原文地址:https://www.cnblogs.com/silentteller/p/11980439.html

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