Python第一个只出现一次的字符

2020-01-21T15:47:57

先遍历一遍字符串,用一个hash表存放每个出现的字符和字符出现的次数。再遍历一遍字符串,找到hash值等于1的输出即可。

'''
在一个字符串(1<=字符串长度<=10000,全部由大写字母组成)中找到第一个只出现一次的字符。
'''

# -*- coding:utf-8 -*-
class Solution:
    def FirstNotRepeatingChar(self, s):
        if s == None or len(s) <= 0:
            return -1
        alphabet = {}
        alist = list(s)
        for i in alist:
            if i not in alphabet.keys():
                alphabet[i] = 0
            alphabet[i] += 1
        for i in alist:
            if alphabet[i] == 1:
                return i
        return -1

s = Solution()
print(s.FirstNotRepeatingChar('abaccdeff'))
当前页面是本站的「Baidu MIP」版。发表评论请点击:完整版 »