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

相关文章
|
1月前
|
算法
【数组相关面试题】LeetCode试题
【数组相关面试题】LeetCode试题
|
1月前
|
存储
力扣面试经典题之数组/字符串
力扣面试经典题之数组/字符串
23 0
|
19天前
【Leetcode】两数之和,给定一个整数数组 nums 和一个整数目标值 target,请你在该数组中找出 和为目标值 target 的那 两个 整数,并返回它们的数组下标。
【Leetcode】两数之和,给定一个整数数组 nums 和一个整数目标值 target,请你在该数组中找出 和为目标值 target 的那 两个 整数,并返回它们的数组下标。
|
15天前
|
C++
【力扣】2562. 找出数组的串联值
【力扣】2562. 找出数组的串联值
|
1月前
|
存储 算法
《LeetCode 热题 HOT 100》——寻找两个正序数组的中位数
《LeetCode 热题 HOT 100》——寻找两个正序数组的中位数
|
1月前
|
存储
力扣刷题-最大子数组和
力扣刷题-最大子数组和
10 1
|
1月前
leetcode2967. 使数组成为等数数组的最小代价
leetcode2967. 使数组成为等数数组的最小代价
21 0
|
1月前
|
算法 搜索推荐
LeetCode刷题---215. 数组中的第K个最大元素(双指针,快速选择)
LeetCode刷题---215. 数组中的第K个最大元素(双指针,快速选择)
|
1月前
|
Go C++
【力扣】2645. 构造有效字符串的最小插入数(动态规划 贪心 滚动数组优化 C++ Go)
【2月更文挑战第17天】2645. 构造有效字符串的最小插入数(动态规划 贪心 滚动数组优化 C++ Go)
31 8
|
1月前
|
算法 测试技术 索引
力扣面试经典题之数组/字符串(二)
力扣面试经典题之数组/字符串(二)
13 0

热门文章

最新文章