-
Notifications
You must be signed in to change notification settings - Fork 47
/
Copy path169.majority-element.java
67 lines (63 loc) · 1.32 KB
/
169.majority-element.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
65
66
/*
* @lc app=leetcode id=169 lang=java
*
* [169] Majority Element
*
* https://leetcode.com/problems/majority-element/description/
*
* algorithms
* Easy (51.54%)
* Likes: 1721
* Dislikes: 152
* Total Accepted: 395.7K
* Total Submissions: 746.3K
* Testcase Example: '[3,2,3]'
*
* 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.
*
* Example 1:
*
*
* Input: [3,2,3]
* Output: 3
*
* Example 2:
*
*
* Input: [2,2,1,1,1,2,2]
* Output: 2
*
*
*/
class Solution {
public int majorityElement(int[] nums) {
return partition(nums, 0, nums.length - 1);
}
public int partition(int[] data, int low, int high) {
int pivot = data[high];
int i = low;
for (int j = low; j < high; j++) {
if (data[j] < pivot) {
swap(data, i, j);
i++;
}
}
swap(data, i, high);
if (i == (data.length - 1)/2) {
return data[i];
} else if (i > (data.length - 1)/2) {
return partition(data, low, i - 1);
} else {
return partition(data, i + 1, high);
}
}
public void swap(int[] data, int i, int j) {
int temp = data[i];
data[i] = data[j];
data[j] = temp;
}
}