-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path169.majority-element.cpp
More file actions
53 lines (50 loc) · 1006 Bytes
/
169.majority-element.cpp
File metadata and controls
53 lines (50 loc) · 1006 Bytes
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
/*
* @lc app=leetcode id=169 lang=cpp
*
* [169] Majority Element
*
* https://leetcode.com/problems/majority-element/description/
*
* algorithms
* Easy (58.03%)
* Likes: 3250
* Dislikes: 219
* Total Accepted: 656.8K
* Total Submissions: 1.1M
* 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
*
*
*/
#include <algorithm>
#include <iostream>
#include <vector>
using std::sort;
using std::vector;
using std::cerr;
// @lc code=start
class Solution {
public:
int majorityElement(vector<int>& nums) {
sort(nums.begin(), nums.end());
return nums[nums.size() / 2]; //this is always a majority element
}
};
// @lc code=end