码迷,mamicode.com
首页 > 编程语言 > 详细

面试题39. 数组中出现次数超过一半的数字

时间:2020-05-09 16:54:18      阅读:60      评论:0      收藏:0      [点我收藏+]

标签:ret   solution   return   图片   alt   inf   面试   http   超过一半   

题目:

技术图片

 

 

解答:

技术图片

 

 

 1 class Solution {
 2 public:
 3     int majorityElement(vector<int>& nums) 
 4     {
 5         int x = 0;
 6         int votes = 0;
 7         for(int num : nums)
 8         {
 9             if(votes == 0) 
10             {
11                 x = num;
12             }
13             if (num == x)
14             {
15                 votes += 1;
16             }
17             else
18             {
19                 votes -= 1;
20             }
21             // votes += num == x ? 1 : -1;
22         }
23         return x;
24     }
25 };

 

面试题39. 数组中出现次数超过一半的数字

标签:ret   solution   return   图片   alt   inf   面试   http   超过一半   

原文地址:https://www.cnblogs.com/ocpc/p/12858473.html

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