题目描述
请实现一个函数用来找出字符流中第一个只出现一次的字符。例如,当从字符流中只读出前两个字符"go"时,第一个只出现一次的字符是"g"。当从该字符流中读出前六个字符“google"时,第一个只出现一次的字符是"l"。
输出描述:
如果当前字符流没有存在出现一次的字符,返回#字符。
源代码:
public class Solution {
//Insert one char from stringstream
StringBuilder sb=new StringBuilder();
int[] hashtable= new int[256];
public void Insert(char ch)
{//将插入的每个字符添加到字符串中,同时,利用数组对字符出现次数进行计数,
sb.append(ch);
if(hashtable[ch]==0)
hashtable[ch]=1;
else hashtable[ch]++;
}
//return the first appearence once char in current stringstream
public char FirstAppearingOnce()
{
char []str=sb.toString().toCharArray();
for(char c:str){//将字符串转换成字符数组,遍历每个字符,如果在计数数组中出现的次数为1,则返回该字符
if(hashtable[c]==1)
return c;
}
return '#';
}
}