169. 多数元素

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

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

来源:力扣(LeetCode)
链接:https://leetcode-cn.com/problems/majority-element
著作权归领扣网络所有。商业转载请联系官方授权,非商业转载请注明出处。

class Solution {
    public int majorityElement(int[] nums) {
        if (nums == null || nums.length == 0) {
            return -1;
        }
        int candidate = 0, candidateNum = 0;

        for (int num : nums) {
            if (candidateNum == 0) {
                candidate = num;
                candidateNum++;
            } else if (candidate == num) {
                candidateNum++;
            } else {
                candidateNum--;
            }
        }
        return candidate;
    }
}
上一篇:tensorflow训练好的模型怎么调用?


下一篇:win10查看连过的WIFI密码