其他分享
首页 > 其他分享> > 169. 多数元素

169. 多数元素

作者:互联网

地址:https://leetcode-cn.com/problems/majority-element/

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

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

 

示例 1:

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

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

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

    /**
     * @param Integer[] $nums
     * @return Integer
     */
    function majorityElement($nums) {
        $arr = array_count_values($nums);
        $max = max($arr);
        return array_search($max,$arr,true);
    }
}

 

标签:cn,多数,元素,problems,element,majority,169,com
来源: https://www.cnblogs.com/8013-cmf/p/13730732.html