字符流中第一个只出现一次的字符
请实现一个函数用来找出字符流中第一个只出现一次的字符。
例如,当从字符流中只读出前两个字符”go”时,第一个只出现一次的字符是’g’。
当从该字符流中读出前六个字符”google”时,第一个只出现一次的字符是’l’。
如果当前字符流没有存在出现一次的字符,返回#字符。
样例
输入:"google"
输出:"ggg#ll"
解释:每当字符流读入一个字符,就进行一次判断并输出当前的第一个只出现一次的字符。
遍历
时间复杂度O(n)
class Solution {
LinkedList<Character> list = new LinkedList();
Map<Character,Integer> map = new HashMap();
//Insert one char from stringstream
public void insert(char ch){
if(map.containsKey(ch)){
if(list.contains(ch)){
list.remove((Object)ch);
}
return;
}
map.put(ch,1);
list.offer(ch);
}
//return the first appearence once char in current stringstream
public char firstAppearingOnce(){
if(list.size() == 0){
return '#';
}
return list.peek();
}
}
本文介绍了一种算法,用于实时检测字符流中首次出现且仅出现一次的字符。通过维护一个列表和映射,该算法能在O(n)的时间复杂度内完成任务。每当有新的字符进入流时,算法会更新其状态,并返回当前首个唯一的字符。

被折叠的 条评论
为什么被折叠?



