剑指offer 数组中出现次数超过一半的数字 Posted on 2019-02-22 | 数组中出现次数超过一半的数字题目数组中有一个数字出现的次数超过数组长度的一半,请找出这个数字。例如输入一个长度为9的数组{1,2,3,2,2,2,5,4,2}。由于数字2在数组中出现了5次,超过数组长度的一半,因此输出2。如果不存在则输出0。 方法1234567891011# -*- coding:utf-8 -*-class Solution: def MoreThanHalfNum_Solution(self, numbers): # write code here if not numbers: return 0 import collections count=collections.Counter(numbers).most_common() if count[0][1]>len(numbers)/2: return count[0][0] return 0 collections