剑指offer-字符流中第一个不重复的字符 -- Java实现

题目

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

分析

思路一:

利用LinkedHashMap添加数据后,遍历map输出时是按照添加顺序输出的。而普通的HashMap输出时则是根据哈希函数随机输出,不是按顺序。

代码:

import java.util.*;
import java.util.Map.Entry;
public class Solution {
    HashMap<Character, Integer> map = new LinkedHashMap<>();
    //Insert one char from stringstream
    public void Insert(char ch)
    {
        if(!map.containsKey(ch)) {
            map.put(ch, 1);
        } else {
            map.put(ch, map.get(ch) + 1);
        }
    }
  //return the first appearence once char in current stringstream
    public char FirstAppearingOnce()
    {
        for(Entry<Character, Integer> entry : map.entrySet()) {
            if(entry.getValue() == 1) {
                return entry.getKey();
            }
        }
        return '#';
    }
}

猜你喜欢

转载自blog.csdn.net/weixin_42054926/article/details/106160568