关于leetcode:leetcode哈希表之第一个只出现一次的字符

本文次要记录一下leetcode哈希表之第一个只呈现一次的字符

题目

在字符串 s 中找出第一个只呈现一次的字符。如果没有,返回一个单空格。 s 只蕴含小写字母。

示例:

s = "abaccdeff"
返回 "b"

s = "" 
返回 " "

 

限度:

0 <= s 的长度 <= 50000

起源:力扣(LeetCode)
链接:https://leetcode-cn.com/problems/di-yi-ge-zhi-chu-xian-yi-ci-de-zi-fu-lcof
著作权归领扣网络所有。商业转载请分割官网受权,非商业转载请注明出处。

题解

class Solution {
    public char firstUniqChar(String s) {
        if (s == null || s.length() == 0) {
            return ' ';
        }
        Map<Character, Integer> map = new LinkedHashMap<>();
        char[] arr = s.toCharArray();
        for (Character e : arr) {
            Integer count  = map.get(e);
            if (count == null) {
                map.put(e, 1);
            } else {
                map.put(e, count + 1);
            }
        }

        for(Map.Entry<Character,Integer> entry : map.entrySet()) {
            if (entry.getValue() == 1) {
                return entry.getKey();
            }
        }

        return ' ';
    }
}

小结

这里借助LinkedHashMap来计数,最初按程序遍历,找出count为1的失去第一个只呈现一次的字符。

doc

  • 第一个只呈现一次的字符

评论

发表回复

您的邮箱地址不会被公开。 必填项已用 * 标注

这个站点使用 Akismet 来减少垃圾评论。了解你的评论数据如何被处理