-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy path169_MajorityElement.cpp
86 lines (73 loc) · 1.63 KB
/
169_MajorityElement.cpp
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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
#include <cstdio>
#include <string>
#include <vector>
#include <stack>
#include <list>
#include <unordered_map>
#include <iostream>
#include <iterator>
#include <algorithm>
using namespace std;
class Solution {
public:
int majorityElement(vector<int> &nums)
{
int n = (int)nums.size();
if (n < 3)
return nums[0];
if (n % 2 == 0)
--n;
nth_element(nums.data(), n, n / 2);
return nums[n / 2];
}
void nth_element(int a[], int n, int idx)
{
for (;;)
{
if (idx == 0)
break;
int v = a[0];
int p = 0;
for (int i = 1; i < n; ++i)
{
if (a[i] <= v)
swap(a[i], a[++p]);
}
swap(a[p], a[0]);
while (p > idx && a[p] == a[p - 1])
--p;
while (p < idx && a[p] == a[p + 1])
++p;
if (p < idx)
{
a += p + 1;
n -= p + 1;
idx -= p + 1;
}
else if (p > idx)
{
n = p;
}
else
{
break;
}
}
}
};
int main()
{
for (auto &test : vector<vector<int>>
{
{1, },
{1, 1},
{1, 1, 2},
{1, 2, 1},
{2, 1, 1},
{2, 1, 2, 2},
{2, 1, 1, 1, 2},
})
{
cout << Solution().majorityElement(test) << "\n";
}
}