剑指offer. 50 字符流中第一个不重复的字符

it2024-08-19  39

剑指offer. 50 字符流中第一个不重复的字符

题目描述:

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

输出描述:

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

解题思路:

思路:时间复杂度O(1),空间复杂度O(n) 1、用一个unordered_map 统计每个字符出现的次数 2、用一个双端队列,如果第一次遇到ch字符,则插入队列;其他情况不在插入 3、求解第一个出现的字符,判断队首元素是否只出现一次,如果是直接返回,否则删除,重复直到找到队列为空 或者队首元素符合要求

代码:

class Solution { public: //Insert one char from stringstream void Insert(char ch) { ++dir[ch]; if(dir[ch]==1) deq.push_back(ch); } //return the first appearence once char in current stringstream char FirstAppearingOnce() { while(!deq.empty()){ if(dir[deq.front()] ==1) return deq.front(); deq.pop_front(); } return '#'; } unordered_map<char,int> dir; deque<char> deq; };
最新回复(0)