一、前言
本系列文章为《剑指Offer》刷题笔记。
刷题平台:牛客网
书籍下载:共享资源
二、题目
请实现一个函数用来找出字符流中第一个只出现一次的字符。例如,当从字符流中只读出前两个字符”go”时,第一个只出现一次的字符是”g”。当从该字符流中读出前六个字符“google”时,第一个只出现一次的字符是”l”。
输出描述:
如果当前字符流没有存在出现一次的字符,返回#字符。
1、思路
这道题还是很简单的。将字节流保存起来,通过哈希表统计字符流中每个字符出现的次数,顺便将字符流保存在string中,然后再遍历string,从哈希表中找到第一个出现一次的字符。
2、代码
C++:
class Solution
{
public:
//Insert one char from stringstream
void Insert(char ch)
{
s += ch;
count[ch]++;
}
//return the first appearence once char in current stringstream
char FirstAppearingOnce()
{
int length = s.size();
for(int i = 0; i < length; i++){
if(count展开] == 1){
return s[i];
}
}
return '#';
}
private:
string s;
int count[256] = {0};
};
Python:
# -*- coding:utf-8 -*- class Solution: def __init__(self): self.s = '' self.count = {} # 返回对应char def FirstAppearingOnce(self): # write code here length = len(self.s) for i in range(length): if self.count[self.s[i]] == 1: return self.s[i] return '#' def Insert(self, char): # write code here self.s += char if char not in self.count: self.count[char] = 1 else: self.count[char] += 1
来源:
https://cuijiahua.com/blog/2018/01/basis_54.html