Majority Element
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.
解题思路
class Solution {
public:
int majorityElement(vector<int>& nums) {
int n = nums.size();
int bitNums[32] = {0};
for (int i = 0; i < 32; ++i) {
for (int j = 0; j < n; ++j) {
if ((nums[j] >> i) & 1) {
bitNums[i]++;
}
}
}
int ans = 0;
for (int i = 0; i < 32; ++i) {
if (bitNums[i] > n / 2) {
ans |= (1 << i);
}
}
return ans;
}
};