用 Go 剑指 Offer 39. 数组中出现次数超过一半的数字 (摩尔投票)
数组中有一个数字出现的次数超过数组长度的一半,请找出这个数字。
你可以假设数组是非空的,并且给定的数组总是存在多数元素。
// 若不存在多数元素,本题就需要计数并判断
示例 1:
输入: [1, 2, 3, 2, 2, 2, 5, 4, 2]
输出: 2
限制:
1 <= 数组长度 <= 50000
来源:力扣(LeetCode)
链接:https://leetcode.cn/problems/shu-zu-zhong-chu-xian-ci-shu-chao-guo-yi-ban-de-shu-zi-lcof
著作权归领扣网络所有。商业转载请联系官方授权,非商业转载请注明出处。
摩尔投票法:
// 非众数 与 众数 相抵之后 剩下的一定为众数
func majorityElement(nums []int) int { votes := 0 x := nums[0] for i := 0;i < len(nums); i++ { if nums[i] == x { votes++ } else { votes-- } if votes == 0 { x = nums[i + 1] } } return x }
本题还可以使用 哈希表 或 排序法解题
hello my world
本文来自博客园,作者:slowlydance2me,转载请注明原文链接:https://www.cnblogs.com/slowlydance2me/p/17302811.html