码迷,mamicode.com
首页 > 其他好文 > 详细

Majority Element

时间:2015-07-08 12:36:31      阅读:122      评论:0      收藏:0      [点我收藏+]

标签:

https://leetcode.com/problems/majority-element/

 1 class Solution {
 2 public:
 3     int majorityElement(vector<int>& nums) {
 4         map<int,int> mymap;
 5         map<int,int>::iterator it;
 6         int n=nums.size();
 7         for(int i=0;i<n;i++)
 8         {
 9             it=mymap.find(nums[i]);
10             if(it==mymap.end())
11             {
12                 mymap.insert(pair<int,int>(nums[i],1));
13             }
14             else
15             {
16                 (*it).second++;
17             }
18         }
19         int max=0;
20         int maxnum;
21         for ( it=mymap.begin() ; it != mymap.end(); it++ )
22         {
23             if((*it).second>max)
24             {
25                 max=(*it).second;
26                 maxnum=(*it).first;
27             }
28                 
29         }
30         return maxnum;
31     }
32 };

 

Majority Element

标签:

原文地址:http://www.cnblogs.com/aguai1992/p/4629596.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!