(Leetcode) 数组中的第K个最大元素 – Python实现

  • Post author:
  • Post category:python

题目:数组中的第K个最大元素
在未排序的数组中找到第 k 个最大的元素。请注意,你需要找的是数组排序后的第 k 个最大的元素,而不是第 k 个不同的元素。
示例 :
输入: [3,2,1,5,6,4] 和 k = 2,输出: 5
输入: [3,2,3,1,2,4,5,5,6] 和 k = 4,输出: 4
说明:
你可以假设 k 总是有效的,且 1 ≤ k ≤ 数组的长度。

————————————————————————

解法1:sort()排序

sort() 函数用于对原列表进行排序,如果指定参数,则使用比较函数指定的比较函数。

用法:list.sort(cmp=None, key=None, reverse=False)

class Solution(object):
    def findKthLargest(self, nums, k):
        """
        :type nums: List[int]
        :type k: int
        :rtype: int
        """
        nums.sort(reverse=True)
        return nums[k-1]

解法2#:快速排序

    def findKthLargest(self, nums, k):
        """
        :type nums: List[int]
        :type k: int
        :rtype: int
        """
        low, high = 0, len(nums)-1
        while low <= high:
            pivot = self.partition(nums,low,high)
            if pivot == k-1:
                return nums[pivot]
            if pivot < k-1:
                low = pivot+1
            else:
                high = pivot-1

    def partition(self, nums, low, high):
        pivot_value = nums[high]
        index = low
        for i in range(low, high):
            if nums[i] >= pivot_value:
                nums[i], nums[index] = nums[index], nums[i]
                index += 1
        nums[index], nums[high] = nums[high], nums[index]
        return index

参考:

https://www.runoob.com/python/att-list-sort.html

https://www.jianshu.com/p/78004704ec8d


版权声明:本文为weixin_42077402原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。