剑指offer39 数组中出现次数超过一半的数字

题目描述

数组中有一个数字出现的次数超过数组长度的一半,请找出这个数字。

你可以假设数组是非空的,并且给定的数组总是存在多数元素。

示例 1:

1
2
输入: [1, 2, 3, 2, 2, 2, 5, 4, 2]
输出: 2

限制:

1
1 <= 数组长度 <= 50000

解题思路

方法一:排序

方法二:投票法

代码实现

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
class Solution39 {
// 排序 数组一定存在,则中间的数就是超过一半的数
public int majorityElement(int[] nums) {
Arrays.sort(nums);
return nums[nums.length / 2];
}

// 投票法
public int majorityElement2(int[] nums) {
int ans = 0, vote = 0;
for (int num : nums) {
if (vote == 0) {
ans = num;
}
if (ans == num) {
vote++;
} else {
vote--;
}
}
return ans;
}
}

资料

https://leetcode-cn.com/problems/shu-zu-zhong-chu-xian-ci-shu-chao-guo-yi-ban-de-shu-zi-lcof/

Author

John Doe

Posted on

2021-05-28

Updated on

2021-06-13

Licensed under

You need to set install_url to use ShareThis. Please set it in _config.yml.
You forgot to set the business or currency_code for Paypal. Please set it in _config.yml.

Comments

You forgot to set the shortname for Disqus. Please set it in _config.yml.