首页 > 其他 > 详细

[leetcode 229]Majority Element II

时间:2015-08-10 16:12:58      阅读:206      评论:0      收藏:0      [点我收藏+]

Given an integer array of size n, find all elements that appear more than ? n/3 ? times. The algorithm should run in linear time and in O(1) space.
Hint:
How many majority elements could it possibly have?
Do you have a better hint? Suggest it!

记录在数组中出现次数最多的两个元素,然后判断这两个元素是不是出现次数超过n/3

AC代码

class Solution {
public:
    vector<int> majorityElement(vector<int>& nums) {
     int sum=nums.size();
     if(sum<=1)
        return nums;
     vector<int> res;
     int temp1=0;
     int count1=0;
     int temp2=0;
     int count2=0;
     for(int i=0;i<sum;++i)
     {
         if(count1==0||nums[i]==temp1)
             {
                 ++count1;
                 temp1=nums[i];
             }
         else if(count2==0||nums[i]==temp2)
            {
                ++count2;
                temp2=nums[i];
            }
         else
         {
             --count1;
             --count2;
         }
     }
     int sum1=0;
     int sum2=0;
     for(int i=0;i<sum;++i)
     {
         if(nums[i]==temp1)
            ++sum1;
         else if(nums[i]==temp2)
            ++sum2;
         else
            continue;
     }
     if(sum1>sum/3)
        res.push_back(temp1);
     if(sum2>sum/3)
        res.push_back(temp2);
     return res;
    }
};


版权声明:本文为博主原创文章,未经博主允许不得转载。

[leetcode 229]Majority Element II

原文:http://blog.csdn.net/er_plough/article/details/47399251

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!