Moore's voting algorithm

Posted BelFuture

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Moore's voting algorithm相关的知识,希望对你有一定的参考价值。

算法的基本思想

这个算法是解决这样一个问题:从一个数组中找出出现半数以上的元素。他的基本思想是:每次都找出一对不同的元素,从数组中删掉,直到数组为空或只有一种元素。 不难证明,如果存在元素e出现频率超过半数,那么数组中最后剩下的就只有e。

算法的实现

 1 int majorityElement(vector<int> &num)
 2 {
 3     int curIdx = 0, count = 1;
 4     for (int i = 1; i < num.size(); ++i)
 5     {
 6         num[i] == num[curIdx] ? ++count : --count;
 7         if (!count)
 8         {
 9             curIdx = i;
10             count = 1;
11         }
12     }
13 
14     return num[curIdx];
15 }

 

以上是关于Moore's voting algorithm的主要内容,如果未能解决你的问题,请参考以下文章

Task 待学习内容Moore majority vote algorithm(摩尔投票算法)

Boyer–Moore Majority Vote Algorithm摩尔投票法,众数算法,Java

Boyer–Moore Majority Vote Algorithm摩尔投票法,众数算法,Java

LeetCode 229 Majority Element II(主要元素II)(Array)(Boyer–Moore majority vote algorithm)

摩尔定律(Moore's Law)

Boyer Moore 动态数组实现