Tony's Log

Algorithms, Distributed System, Machine Learning

  博客园 :: 首页 :: 博问 :: 闪存 :: 新随笔 :: 联系 :: 订阅 订阅 :: 管理 ::

Really interesting O(n) problem. Just like playing.. so actually working on algorithm problems is like playing games!

class Solution {
public:
    int majorityElement(vector<int> &num) 
    {
        int ret = num[0];
        int cnt = 1;
        for (int i = 1; i < num.size(); i ++)
        {
            if (cnt == 0) ret = num[i];
            if(num[i] == ret)    cnt ++;
            else                cnt--;
        }
        return ret;
    }
};
posted on 2014-12-23 05:37  Tonix  阅读(147)  评论(0编辑  收藏  举报