欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

剑指Offer 50:第一个只出现一次的字符

程序员文章站 2022-07-10 13:28:30
...

字符串中

HashMap<Character, Integer>  map = new HashMap<>();
for key in Str
	if !map.containKey(key)
		map.put(key, 0);
	else
		map.put(key, map.get(key)++);
for key in Str
	if map.get(key)==1
		return map.get

字符流中

public void Insert(char ch){
	if(!map.containKey())
			map.put(key, 0);
	else
		map.put(key, map.get(key)++);
}
public char FirstAppearingOnce(){
	
	return char
}