WEEK#15 Divide and Conquer_Majority Element

Description of the Problem

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 exists in the array.


Brute Force

Traverse the array and count the number of times that each entry appears, and find the one that appears more than n/2 times

class Solution {
public:
    int majorityElement(vector<int>& nums) {
        //FindMaj(nums, 0, 0 + nums.size() / 2, 0 + nums.size() - 1, nums.size());
        map<int, int> map;
        for (int i = 0; i < nums.size(); i++) {
            std::map<int, int>::iterator it;
            it = map.find(nums[i]);
            if (it != map.end()) {
                it->second++;
            }
            else {
                map.insert(it, std::pair<int, int>(nums[i], 1));
            }
        }
        for (std::map<int,int>::iterator it = map.begin(); it != map.end(); it++) {
            if (it->second > nums.size() / 2)
                return it->first;
        }
    }
    
};

Divide and Conquer

1.Thinking process

An array of size n.
Find an element that appears more than n/2 times.

An array of size n/2.
Find an element that appears more than n/4 times.
.
.
.
An array of size 4.
Find an element that appears more than 4/2 = 2 times.

An array of size 2.
Find an element that appears more than 2/2 = 1 times.

Note that in this way, we can work out no solution...

2. Another way

Divide the array into two halves, and find their majority element independently, until the array is of size 1, in which case the majority element is the one and only entry.
When it comes to considering which majority would it be when two divided arrays are put together, ways are as follows:
// suppose that the majority element of the left array is LM and of the right array, RM

  1. if (RM == LM)
    M = LM;
  2. if (RM != LM)
    Count the times LM and RM appear in the left/right array, whichever appears more may be the majority element of the merged array.
    int FindMaj(vector<int>& nums, int begin, int mid, int end, int size) {
        if (begin == end)
            return nums[begin];
        int LM = FindMaj(nums, begin, begin + size / 4, begin + size / 2 - 1, size / 2);
        int RM = FindMaj(nums, mid, mid + size / 4, mid + size / 2 - 1, size / 2);
        if (LM == RM)
            return LM;
        else 
            return count(nums.begin()+begin, nums.begin() + mid - 1, LM) > count(nums.begin()+mid, nums.begin() + end, RM) ? LM : RM;
    }

Moore Voting Algorithm

copied from https://leetcode.com/problems/majority-element/discuss/

    int majorityElement(vector<int>& nums) {
        int major, counts = 0, n = nums.size();
        for (int i = 0; i < n; i++) {
            if (!counts) {
                major = nums[i];
                counts = 1;
            }
            else counts += (nums[i] == major) ? 1 : -1;
        }
        return major;
    }

Traverse the array, during which maintain entries of 'major' and 'count', which is potentially the majority element of the array.
The way of maintaining it :
if 'count' equals zero, meaning that there is currently no majority element, so we choose the traversed element as 'major'.
Each time an element E is traversed, if E equals to 'major', count++,
otherwise count--. In this way, when the whole array is traversed, the 'major' that made it to the end would be the entry that appears more than n/2 times in the array.

最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請(qǐng)聯(lián)系作者
  • 序言:七十年代末,一起剝皮案震驚了整個(gè)濱河市女阀,隨后出現(xiàn)的幾起案子,更是在濱河造成了極大的恐慌,老刑警劉巖凄鼻,帶你破解...
    沈念sama閱讀 210,914評(píng)論 6 490
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件,死亡現(xiàn)場(chǎng)離奇詭異紊册,居然都是意外死亡放前,警方通過(guò)查閱死者的電腦和手機(jī),發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 89,935評(píng)論 2 383
  • 文/潘曉璐 我一進(jìn)店門(mén)痊焊,熙熙樓的掌柜王于貴愁眉苦臉地迎上來(lái)盏袄,“玉大人,你說(shuō)我怎么就攤上這事薄啥≡穑” “怎么了?”我有些...
    開(kāi)封第一講書(shū)人閱讀 156,531評(píng)論 0 345
  • 文/不壞的土叔 我叫張陵垄惧,是天一觀的道長(zhǎng)刁愿。 經(jīng)常有香客問(wèn)我,道長(zhǎng)到逊,這世上最難降的妖魔是什么铣口? 我笑而不...
    開(kāi)封第一講書(shū)人閱讀 56,309評(píng)論 1 282
  • 正文 為了忘掉前任,我火速辦了婚禮蕾管,結(jié)果婚禮上枷踏,老公的妹妹穿的比我還像新娘。我一直安慰自己掰曾,他們只是感情好旭蠕,可當(dāng)我...
    茶點(diǎn)故事閱讀 65,381評(píng)論 5 384
  • 文/花漫 我一把揭開(kāi)白布。 她就那樣靜靜地躺著旷坦,像睡著了一般掏熬。 火紅的嫁衣襯著肌膚如雪。 梳的紋絲不亂的頭發(fā)上秒梅,一...
    開(kāi)封第一講書(shū)人閱讀 49,730評(píng)論 1 289
  • 那天旗芬,我揣著相機(jī)與錄音,去河邊找鬼捆蜀。 笑死疮丛,一個(gè)胖子當(dāng)著我的面吹牛,可吹牛的內(nèi)容都是我干的辆它。 我是一名探鬼主播誊薄,決...
    沈念sama閱讀 38,882評(píng)論 3 404
  • 文/蒼蘭香墨 我猛地睜開(kāi)眼,長(zhǎng)吁一口氣:“原來(lái)是場(chǎng)噩夢(mèng)啊……” “哼锰茉!你這毒婦竟也來(lái)了呢蔫?” 一聲冷哼從身側(cè)響起,我...
    開(kāi)封第一講書(shū)人閱讀 37,643評(píng)論 0 266
  • 序言:老撾萬(wàn)榮一對(duì)情侶失蹤飒筑,失蹤者是張志新(化名)和其女友劉穎片吊,沒(méi)想到半個(gè)月后绽昏,有當(dāng)?shù)厝嗽跇?shù)林里發(fā)現(xiàn)了一具尸體,經(jīng)...
    沈念sama閱讀 44,095評(píng)論 1 303
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡俏脊,尸身上長(zhǎng)有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 36,448評(píng)論 2 325
  • 正文 我和宋清朗相戀三年全谤,在試婚紗的時(shí)候發(fā)現(xiàn)自己被綠了。 大學(xué)時(shí)的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片联予。...
    茶點(diǎn)故事閱讀 38,566評(píng)論 1 339
  • 序言:一個(gè)原本活蹦亂跳的男人離奇死亡啼县,死狀恐怖,靈堂內(nèi)的尸體忽然破棺而出沸久,到底是詐尸還是另有隱情季眷,我是刑警寧澤,帶...
    沈念sama閱讀 34,253評(píng)論 4 328
  • 正文 年R本政府宣布卷胯,位于F島的核電站子刮,受9級(jí)特大地震影響,放射性物質(zhì)發(fā)生泄漏窑睁。R本人自食惡果不足惜挺峡,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 39,829評(píng)論 3 312
  • 文/蒙蒙 一、第九天 我趴在偏房一處隱蔽的房頂上張望担钮。 院中可真熱鬧橱赠,春花似錦、人聲如沸箫津。這莊子的主人今日做“春日...
    開(kāi)封第一講書(shū)人閱讀 30,715評(píng)論 0 21
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽(yáng)苏遥。三九已至饼拍,卻和暖如春,著一層夾襖步出監(jiān)牢的瞬間田炭,已是汗流浹背师抄。 一陣腳步聲響...
    開(kāi)封第一講書(shū)人閱讀 31,945評(píng)論 1 264
  • 我被黑心中介騙來(lái)泰國(guó)打工, 沒(méi)想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留教硫,地道東北人叨吮。 一個(gè)月前我還...
    沈念sama閱讀 46,248評(píng)論 2 360
  • 正文 我出身青樓,卻偏偏與公主長(zhǎng)得像瞬矩,于是被迫代替她去往敵國(guó)和親挤安。 傳聞我的和親對(duì)象是個(gè)殘疾皇子,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 43,440評(píng)論 2 348

推薦閱讀更多精彩內(nèi)容