【剑指offer】数据流中第一个不重复的字符

题目描述

请实现一个函数用来找出字符流中第一个只出现一次的字符。例如,当从字符流中只读出前两个字符"go"时,第一个只出现一次的字符是"g"。当从该字符流中读出前六个字符“google"时,第一个只出现一次的字符是"l"。
输出描述:
如果当前字符流没有存在出现一次的字符,返回#字符。

解题思路

  1. 用num数组表示字符出现的次数,index是字符的ask码,值是出现的次数;
  2. 在输入的时候就对num数组进行更新;
  3. 循环str,如果碰到只出现一次对字符,返回该字符,如果循环中没有出现次数是1的字符,则返回#。

代码

public class Solution {
    private String str = "";
    private int[] num = new int['Z' > 'z' ? 'Z' : 'z'];
    //Insert one char from stringstream
    public void Insert(char ch)
    {
        str += ch;
        num[ch] = num[ch] + 1;
    }
    //return the first appearence once char in current stringstream
    public char FirstAppearingOnce()
    {
        for(int i = 0; i < str.length(); i++){
            if(num[str.charAt(i)] == 1) return str.charAt(i);
        }
        return '#';
    }
}
发布了77 篇原创文章 · 获赞 1 · 访问量 5380

猜你喜欢

转载自blog.csdn.net/u010659877/article/details/104094477
今日推荐