offer-50


在字符串 s 中找出第一个只出现一次的字符。如果没有,返回一个单空格。 s 只包含小写字母。

示例 1:

输入:s = "abaccdeff"
输出:'b'

示例 2:

输入:s = "" 
输出:' '

限制:

0 <= s 的长度 <= 50000

//leetcode submit region begin(Prohibit modification and deletion)
class Solution {
    public char firstUniqChar(String s) {
        Set<Character> chSet = new HashSet<>();
        Set<Character> duplicateChSet = new HashSet<>();

        Queue<Character> chQ = new LinkedList<>();

        for (char ch : s.toCharArray()) {
            if (!chSet.contains(ch)) {
                chQ.add(ch);
                chSet.add(ch);
            } else {
                duplicateChSet.add(ch);
            }
        }

        while (!chQ.isEmpty()) {
            char ch = chQ.poll();

            if (!duplicateChSet.contains(ch)) {
                return ch;
            }
        }

        return ' ';
    }
}
//leetcode submit region end(Prohibit modification and deletion)

文章作者: 倪春恩
版权声明: 本博客所有文章除特別声明外,均采用 CC BY 4.0 许可协议。转载请注明来源 倪春恩 !