Leetcode daily 20/03/13

Posted chunngai

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Leetcode daily 20/03/13相关的知识,希望对你有一定的参考价值。

多数元素

-题目-

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

-示例 1-

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

-示例 2-

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


-方法1-

??字典统计字符数量再取出现次数符合要求的数字即可。

-ac代码-

from collections import Counter

class Solution:
    def majorityElement(self, nums: List[int]) -> int:
        count = Counter(nums)

        for key in count:
            if count[key] > int(len(nums) / 2):
                return key

-复杂度-

  • (T(n) = O(n)) (字典记录,找符合要求的数字)
  • (S(n) = O(n)) (多数元素最少 (int(frac{n}{2}) + 1) 个数字,其他数字最多有 (n - int(frac{n}{2}) - 1) 个,因此数组最多 (n - int(frac{n}{2}))个数字)

以上是关于Leetcode daily 20/03/13的主要内容,如果未能解决你的问题,请参考以下文章

[栈] leetcode 739 Daily Temperatures

LeetCode Daily 21

[LeetCode] Daily Temperatures

LeetCode - Daily Temperatures

LeetCode Daily 12

[LeetCode] Daily Temperatures 日常温度