剑指Offer打卡day 41—— Acwing 64. 字符流中第一个只出现一次的字符

Posted Johnny*

tags:

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

【题目描述】

在这里插入图片描述

Acwing 64. 字符流中第一个只出现一次的字符
【思路】

class Solution {    
    
    Map<Character, Integer> count = new HashMap<>();
    Queue<Character> q = new LinkedList<>();
    
    //Insert one char from stringstream   
    public void insert(char ch){
        
        q.offer(ch);
        //个数加一
        if( !count.containsKey(ch) ) count.put(ch, 1);
        else count.put(ch, count.get(ch) + 1);
    }
    //return the first appearence once char in current stringstream
    public char firstAppearingOnce(){
        if( !q.isEmpty() &&  count.get( q.peek() ) == 1 ) return q.peek();
        
        while( !q.isEmpty() && count.get(q.peek() ) > 1 ) q.poll();
        return q.isEmpty() ? '#' :q.peek();
        
    }
}

以上是关于剑指Offer打卡day 41—— Acwing 64. 字符流中第一个只出现一次的字符的主要内容,如果未能解决你的问题,请参考以下文章

剑指Offer打卡目录(Java实现)

剑指Offer打卡day42—— Acwing 62. 丑数

剑指Offer打卡day42——AcWing 77. 翻转单词顺序

剑指Offer打卡day42—— ACWing 81. 扑克牌的顺子

剑指Offer打卡day43—— Acwing 86. 构建乘积数组

剑指Offer打卡day43—— ACWing 88. 树中两个结点的最低公共祖先