文字ストリームの最初の重複しない文字java実装


文字ストリームに最初に1回しか現れない文字を見つけるための関数を実装してください.例えば、文字ストリームから最初の2文字「go」のみが読み出される場合、最初に1回しか現れない文字は「g」である.この文字ストリームから最初の6文字「google」を読み出すと、最初に1回しか現れない文字は「l」である.
構想:配列を巡り、各文字の出現回数と最初に出現した位置を記録する配列を新規作成します.
public class Solution {
     int count[]=new int[256];
    //Insert one char from stringstream
    int index=1;
    public void Insert(char ch)
    {
        if(count[ch]==0){
          count[ch]=index++; 
        }
        else{
            count[ch]=-1;
        }
    }
  //return the first appearence once char in current stringstream
    public char FirstAppearingOnce()
    {
        int temp=Integer.MAX_VALUE;
        char ch='#';
        for(int i=0;i<256;i++){
            if(count[i]!=0&&count[i]!=-1&&count[i]count[i];
                ch=(char)i;
            }
        }
        return ch;
    }
}