数组中出现次数超过一半的数字[Python]

数组中出现次数超过一半的数字

http://www.nowcoder.com/questionTerminal/e8a1b01a2df14cb2b228b30ee6a92163

题目描述
数组中有一个数字出现的次数超过数组长度的一半,请找出这个数字。例如输入一个长度为9的数组{1,2,3,2,2,2,5,4,2}。由于数字2在数组中出现了5次,超过数组长度的一半,因此输出2。如果不存在则输出0。

-- coding:utf-8 --

class Solution:
def MoreThanHalfNum_Solution(self, numbers):
# write code here
res = 0
flag = len(numbers) // 2
for i in numbers:
count = 0
for j in numbers:
if i == j:
count = count + 1
if count > flag:
res = i
return res

全部评论

相关推荐

11-15 19:28
已编辑
蚌埠坦克学院 硬件开发
点赞 评论 收藏
分享
我也曾抱有希望:说的好直白
点赞 评论 收藏
分享
2 收藏 评论
分享
牛客网
牛客企业服务