剑指OFFER_字符流中第一个不重复的字符

剑指OFFER_字符流中第一个不重复的字符

题目描述

请实现一个函数用来找出字符流中第一个只出现一次的字符。例如,当从字符流中只读出前两个字符"go"时,第一个只出现一次的字符是"g"。当从该字符流中读出前六个字符“google"时,第一个只出现一次的字符是"l"。

输出描述:

如果当前字符流没有存在出现一次的字符,返回#字符。

思路

这道题我完成后看了一下题解,嗯和题解一摸一样,都是通过哈希加队列实现的:

首先利用一个哈希表保存字符出现的次数,然后将此字符放进队列中;

当要找到不重复字符的时候,从队列中不停的出字符,直到该字符出现的次数为1即可;

代码

#include <bits/stdc++.h>
class Solution
{
public:
    queue<char> que;
    unordered_map<char, int> um;
  //Insert one char from stringstream
    void Insert(char ch) {
        ++um[ch];
        if (um[ch] == 1) {
            que.push(ch);
        }
    }
  //return the first appearence once char in current stringstream
    char FirstAppearingOnce() {
        while (!que.empty()) {
            char p = que.front(); 
            if (um[p] == 1) {
                return p;
            } else {
                que.pop();
            }
        }
        return '#';
    }

};
posted @ 2020-07-09 23:48  樱花小猪  阅读(117)  评论(0编辑  收藏  举报