-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathQ29_主元素.java
64 lines (58 loc) · 1.26 KB
/
Q29_主元素.java
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
package com.algorithm.demo.array;
import com.algorithm.demo.PrintArray;
import java.util.List;
/**
* 描述
* 给定一个整型数组,找出主元素,它在数组中的出现次数大于数组元素个数的二分之一。
* <p>
* 假设数组非空,且数组中总是存在主元素。
* <p>
* 样例
* 样例 1:
* <p>
* 输入:
* <p>
* 数组 = [1, 1, 1, 1, 2, 2, 2]
* 输出:
* <p>
* 1
* 解释:
* <p>
* 数组中1的个数大于数组元素的二分之一。
* <p>
* 样例 2:
* <p>
* 输入:
* <p>
* 数组 = [1, 1, 1, 2, 2, 2, 2]
* 输出:
* <p>
* 2
* 解释:
* <p>
* 数组中2的个数大于数组元素的二分之一。
* <p>
* 挑战
* 要求时间复杂度为O(n),空间复杂度为O(1)
*/
public class Q29_主元素 {
/*
* @param nums: a list of integers
* @return: find a majority number
*/
public static int majorityNumber(List<Integer> nums) {
int currentMajor = 0;
int count = 0;
for (Integer num : nums) {
if (count == 0) {
currentMajor = num;
}
if (num == currentMajor) {
count++;
} else {
count--;
}
}
return currentMajor;
}
}