【LintCode 简单】46. 主元素

区块链

580人已加入

描述

1.问题描述:

给定一个整型数组,找出主元素,它在数组中的出现次数严格大于数组元素个数的二分之一。


2.样例:

给出数组[1,1,1,1,2,2,2],返回 1。


3.代码:

class Solution: """ @param: nums: a list of integers @return: find a majority number """ def majorityNumber(self, nums): # write your code here length=len(nums) for i in range(int(length/2)+1): count=1 for j in range(i+1,length): if nums[i] == nums[j]: count+=1 if count>length/2: return nums[i]

打开APP阅读更多精彩内容
声明:本文内容及配图由入驻作者撰写或者入驻合作网站授权转载。文章观点仅代表作者本人,不代表电子发烧友网立场。文章及其配图仅供工程师学习之用,如有内容侵权或者其他违规问题,请联系本站处理。 举报投诉
  • 相关推荐

全部0条评论

快来发表一下你的评论吧 !

×
20
完善资料,
赚取积分