字符流中第一个不重复的字符(Java)
题目:请实现一个函数用来找出字符流中第一个只出现一次的字符。例如,当从字符流中只读出前两个字符"go"时,第一个只出现一次的字符是"g"。当从该字符流中读出前六个字符“google"时,第一个只出现一次的字符是"l"。
代码:
import java.util.HashMap;
import java.util.Map;
/**
* @desc 字符流中第一个不重复的字符
* @author zhaoliang
* @date 20200415
*/
public class Main50 {
private Map<Character,Integer> map = new HashMap<>();//保存每个字符出现的次数
private StringBuilder str = new StringBuilder();//保存字符流
private int index = 0;//保存字符只出现一次的第一个位置
//Insert one char from stringstream
public void Insert(char ch)
{
str.append(ch);
map.put(ch,map.getOrDefault(ch,0)+1);//无取0,有+1
}
//return the first appearence once char in current stringstream
public char FirstAppearingOnce()
{
while (index <str.length()){
if(map.get(str.charAt(index))==1){
return str.charAt(index);
}
index++;
}
return '#';
}
}