169. 多数元素

169. 多数元素

给定一个大小为 n 的数组,找到其中的多数元素。多数元素是指在数组中出现次数大于 ⌊ n/2 ⌋ 的元素。
你可以假设数组是非空的,并且给定的数组总是存在多数元素。

示例 1:

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

示例 2:

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

代码如下:

class Solution {
    /**
     * @param Integer[] $nums
     * @return Integer
     */
    function majorityElement($nums) {
        $arrayCount = array_count_values($nums);
        $max = max($arrayCount);
        $count = count($nums);
        if (($max / $count) >=  ($count / 2) / $count){
            return array_search($max, $arrayCount);
        }
    }
}

本文链接:https://itarvin.com/detail-194.aspx

登录或者注册以便发表评论

登录

注册