题意
请实现一个函数用来找出字符流中第一个只出现一次的字符。
例如,当从字符流中只读出前两个字符 go 时,第一个只出现一次的字符是 g。
当从该字符流中读出前六个字符 google 时,第一个只出现一次的字符是 l。
如果当前字符流没有存在出现一次的字符,返回 # 字符。
样例
输入:”google”
输出:”ggg#ll”
解释:每当字符流读入一个字符,就进行一次判断并输出当前的第一个只出现一次的字符。
分析
流式的顺序是队列的特征。
只需要用一个队列和一个哈希表即可实现这个功能,每次有字符进入流时,统计它的频率,如果是第一次出现,那么将它加入队列。每次要查询时,从队头弹出所有不符合条件的,剩下的队头就是第一个符合条件的字符。
class Solution{
public:
queue<char> q;
unordered_map<char, int> freq;
//Insert one char from stringstream
void insert(char ch){
freq[ch] ++;
if(freq[ch] == 1)q.push(ch);
}
//return the first appearence once char in current stringstream
char firstAppearingOnce(){
while(!q.empty() && freq[q.front()] > 1)q.pop();
if(q.empty())return '#';
else return q.front();
}
};