给定一个大小为 n 的数组,找到其中的多数元素。多数元素是指在数组中出现次数 大于 ⌊ n/2 ⌋ 的元素。

    你可以假设数组是非空的,并且给定的数组总是存在多数元素。

    示例 1:

    输入:[3,2,3]
    输出:3
    示例 2:

    输入:[2,2,1,1,1,2,2]
    输出:2

    进阶:

    尝试设计时间复杂度为 O(n)、空间复杂度为 O(1) 的算法解决此问题。


    1. class Solution {
    2. public int majorityElement(int[] nums) {
    3. int x = 0, votes = 0;
    4. for (int num : nums) {
    5. if (votes == 0) x = num;
    6. votes = num == x ? votes + 1 : votes - 1;
    7. }
    8. return x;
    9. }
    10. }