leetCode 169. Majority Element 数组

简介:

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:

使用map来处理。

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
class  Solution {
public :
     int  majorityElement(vector< int >& nums) {
         map< int int > record;
         for  ( int  i = 0; i < nums.size(); i++)
         {
             if  (record.find(nums[i]) == record.end())
             {
                 record.insert(pair< int int >(nums[i], 1));
                 if  (record[nums[i]] > nums.size() / 2)
                 {
                     return  nums[i];
                 }
             }
             else
             {
                 record[nums[i]] += 1;
                 if  (record[nums[i]] > nums.size() / 2)
                 {
                     return  nums[i];
                 }
             }
         }
         return  0;
     }
};

思路2:

采用双循环

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
int  majorityElement(vector< int >& nums) {
     int  hit = 0;
     int  currentElem;
     for  ( int  i = 0; i < nums.size(); i++)
     {
         currentElem = nums[i];
         hit = 0;
         for  ( int  j = 0; j < nums.size(); j++)
         {
             if  (nums[j] == currentElem)
             {
                 hit++;
                 if  (hit > nums.size() / 2)
                 {
                     return  currentElem;
                 }
             }
         }
     }
     return  0;
}




本文转自313119992 51CTO博客,原文链接:http://blog.51cto.com/qiaopeng688/1836477

相关文章
|
29天前
|
索引
力扣随机一题 6/26 哈希表 数组 思维
力扣随机一题 6/26 哈希表 数组 思维
15 0
|
29天前
|
存储 算法 索引
力扣每日一题 6/24 模拟 数组 单调栈
力扣每日一题 6/24 模拟 数组 单调栈
10 0
|
29天前
力扣随机一题 哈希表 排序 数组
力扣随机一题 哈希表 排序 数组
14 1
|
29天前
|
存储 算法
力扣每日一题 6/20 数学+数组
力扣每日一题 6/20 数学+数组
18 1
|
17天前
|
存储 算法
经典的滑动窗口的题目 力扣 2799. 统计完全子数组的数目(面试题)
经典的滑动窗口的题目 力扣 2799. 统计完全子数组的数目(面试题)
|
25天前
2670.找出不同元素数目差数组-力扣(LeetCode)
2670.找出不同元素数目差数组-力扣(LeetCode)
9 0
|
29天前
|
算法 索引
力扣随机一题 位运算/滑动窗口/数组
力扣随机一题 位运算/滑动窗口/数组
16 0
|
29天前
|
算法 索引
力扣每日一题 6/28 动态规划/数组
力扣每日一题 6/28 动态规划/数组
21 0
|
29天前
力扣随机一题 6/28 数组/矩阵
力扣随机一题 6/28 数组/矩阵
16 0
|
29天前
|
存储 安全
力扣每日一题 6/21 数组
力扣每日一题 6/21 数组
9 0