题目描述
请实现一个函数用来找出字符流中第一个只出现一次的字符。例如,当从字符流中只读出前两个字符"go"时,第一个只出现一次的字符是"g"。当从该字符流中读出前六个字符“google"时,第一个只出现一次的字符是"l"。
如果当前字符流没有存在出现一次的字符,返回#字符。
思路
分别创建一个list和一个dict
list记录出现过的字符,有序,不可计数。
dict记录出现过的字符出现的次数,可计数,但无序。
代码
class Solution:
# 返回对应char
def __init__(self):
#记录出现的字符
self.char_list = []
#记录出现的字符的出现次数
self.char_dict = {}
def FirstAppearingOnce(self):
#没有字符流,直接返回 #
if len(self.char_list) == 0:
return '#'
for i in range(len(self.char_list)):
if self.char_dict[self.char_list[i]] == 1:
return self.char_list[i]
#有字符流,但是遍历完全部的,依旧没有不重复的,返回 #
return '#'
def Insert(self, char):
if char not in self.char_dict.keys():
self.char_list.append(char)
self.char_dict[char] = 1
else:
self.char_dict[char] += 1
网友评论