第45天。
今天的题目是Majority Element:
Given an array of size n, find the majority element. The majority element is the element that appears more than ⌊ n/2 ⌋ times.
You may assume that the array is non-empty and the majority element always exist in the array.
最简单的想法就是,遍历一遍序列,记录出现的次数,然后在遍历一遍刚才记录的次数,如果大于k
就直接返回,这种时候一般会用到hash table
,在c++
中就是unordered_map
:
这种方法的时间复杂度是O(n)
,空间复杂度也是O(n)
.
虽然很简单,但是这道题目在dicuss
中也有很多有趣的解法:
- 因为
Majority Element
在序列中存在n/2
个,所以假如这个序列时有序的话,他一定会出现在中间:
很nice
的学到了一个新的函数。
- 同样是因为出现了
k/2
次,所以我们如果随机选取一个元素的话,有一半的概率可以直接选到Majority Element
:
Moore Voting Algorithm
,这个方法的正确性我也不是很确定: