剑指 Offer 39. 数组中出现次数超过一半的数字

数组中有一个数字出现的次数超过数组长度的一半,请找出这个数字。

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

示例 1:

输入: [1, 2, 3, 2, 2, 2, 5, 4, 2]
输出: 2

限制:

1 <= 数组长度 <= 50000

题解:

class Solution {
public:
    int majorityElement(vector<int>& nums) {
        int r, c = 0;
        for (auto x : nums)
            if (!c) r = x, c = 1;
            else if (r == x) c ++;
            else c --;
        return r;
    }
};
上一篇:通过一个图片找它的具体位置


下一篇:FastAPI(39)- 使用 CORS 解决跨域问题