OJ 169 Majority Element
生活随笔
收集整理的這篇文章主要介紹了
OJ 169 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.
我的解法:
?
分析:首先要知道一個定理,如果一個序列中存在一個出現率大于1/2的元素,我們記為mE,那么如果去掉這個序列中的兩個不相同的元素,新序列中一定存在一個出現率大于1/2的元素,依然是mE。
該算法最差情況需要在i指向第一個元素的時候,也就是算法的復雜度最差是O(n),最好的情況需要n/2。
這個問題還可以直接考慮,通過map來計數,來獲取所求的元素。代碼如下:
1 int majorityElement(vector<int> &num) { 2 map<int, int> count; 3 for (int i : num) 4 { 5 if (++count[i] >= num.size() / 2) 6 { 7 return i; 8 } 9 } 10 }?
轉載于:https://www.cnblogs.com/charleschiu/p/4338250.html
總結
以上是生活随笔為你收集整理的OJ 169 Majority Element的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: C++教程之lambda表达式一
- 下一篇: java学习之三种常用设计模式