程序员面试金典

时间:2022-07-03 00:42:02

程序员面试金典--字符流中第一个不重复的字符

题目描述

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

输出描述:

如果当前字符流没有存在出现一次的字符,返回#字符。

 

 

class Solution
{
int cnt[128] = {0};
int idx[128] = {0};

int n = 1;


public:
//Insert one char from stringstream

void Insert(char ch)
{
if(cnt[ch] == 0){
idx[ ch ] = n;
}
++cnt[ch];
++n;

}
//return the first appearence once char in current stringstream
char FirstAppearingOnce()
{
char ans = '#', pt = 0x3f3f3f3f;
for(int i=0; i<128; ++i){
if(cnt[i] == 1 && pt > idx[i] ){
pt = idx[i];
ans = (char)i;
}
}
return ans;
}

};