【经典LeetCode算法题目专栏分类】【第10期】排序问题、股票问题与TOP K问题:翻转对、买卖股票最佳时机、数组中第K个最大/最小元素

简介: 【经典LeetCode算法题目专栏分类】【第10期】排序问题、股票问题与TOP K问题:翻转对、买卖股票最佳时机、数组中第K个最大/最小元素

排序

翻转对

# 分治排序算法扩展
class Solution:
    def reversePairs(self, nums: List[int]) -> int:
        def merge(left, right):
            # 统计前面比后面大的翻转对个数
            j = 0
            for i in range(len(left)):
                while j < len(right) and left[i] > 2 * right[j]:
                    j += 1
                self.count += j
            # 合并两个有序列表
            res = []
            while  len(left) > 0 and len(right) > 0:
                if left[0] < right[0]:
                    res.append(left.pop(0))
                else:
                    res.append(right.pop(0))
            if left:
                res.extend(left)
            if right:
                res.extend(right)
            return res
        def mergeSort(arr):
            n =len(arr)
            if n < 2:
                return arr
            middle = n // 2
            left = arr[:middle]
            right = arr[middle:]
            sort_left = mergeSort(left)
            sort_right = mergeSort(right)
            return merge(sort_left, sort_right)
        self.count = 0
        mergeSort(nums)
        return self.count

股票问题

买卖股票的最佳时机

class Solution:
    def maxProfit(self, prices: List[int]) -> int:
        if not prices:
            return 0
        minValue = prices[0]
        res = 0
        for i in range(1, len(prices)):
            minValue = min(minValue, prices[i])
            res = max(res, prices[i]-minValue)
        return res

买卖股票的最佳时机3

TOP K问题

数组中的 第K个最大元素

class Solution:
    def findKthLargest(self, nums: List[int], k: int) -> int:
        # 使用快速排序
        lo = 0
        hi = len(nums) - 1
        k = len(nums) - k
        while lo <= hi:
            p = self.partition(nums, lo, hi)
            if p > k:
                hi = p - 1
            elif p < k:
                lo = p + 1
            else:
                return nums[p]
        return -1
    
    def  partition(self, nums, lo, hi):
        pivot = nums[lo]
        i = lo
        j = hi
        while i < j:
            while i < j and nums[j] >= pivot:
                j -= 1
            nums[i] = nums[j]
            while i < j and nums[i] < pivot:
                i += 1
            nums[j] = nums[i]
        nums[i] = pivot
        return i

数组中前K个最小的元素

def partition(nums, lo, hi):
    pivot = nums[lo]
    i = lo
    j = hi
    while i < j:
        while i < j and nums[j] >= pivot:
            j -= 1
        nums[i] = nums[j]
        while i < j and nums[i] < pivot:
            i += 1
        nums[j] = nums[i]
    nums[i] = pivot
    return i
def getKminnums(nums, k):
    index = k - 1
    low = 0
    high = len(nums) - 1
    while low <= high:
        p = partition(nums, low, high)
        if p > index:
            high = p - 1
        elif p < index:
            low = p + 1
        else:
            # 输出前k个元素
            return nums[:index+1]


相关文章
|
3月前
|
算法 Python
【Leetcode刷题Python】309. 最佳买卖股票时机含冷冻期
解决LeetCode上309题“最佳买卖股票时机含冷冻期”的Python代码示例,利用动态规划方法计算在含有冷冻期约束下的最大利润。
40 1
|
3月前
|
算法 Java
LeetCode经典算法题:矩阵中省份数量经典题目+三角形最大周长java多种解法详解
LeetCode经典算法题:矩阵中省份数量经典题目+三角形最大周长java多种解法详解
50 6
|
3月前
|
算法 Python
【Leetcode刷题Python】121. 买卖股票的最佳时机
解决LeetCode上121题“买卖股票的最佳时机”的Python代码示例,采用一次遍历的方式寻找最佳买卖时机以获得最大利润。
59 1
|
3月前
|
算法
leetcode188 买卖股票的最佳时机IV
leetcode188 买卖股票的最佳时机IV
61 0
|
3月前
|
算法 Python
【Leetcode刷题Python】714. 买卖股票的最佳时机含手续费
提供了两种解决买卖股票最佳时机含手续费问题的Python实现方法:贪心算法和动态规划算法。
41 0
|
3月前
|
算法 Python
【Leetcode刷题Python】122.买卖股票的最佳时机 II
LeetCode "买卖股票的最佳时机 II" 问题的Python代码实现,采用贪心算法在股票价格上升的每一天买入并卖出,以获得最大利润。
21 0
|
5月前
|
人工智能 算法 搜索推荐
蓝桥杯宝藏排序题目算法(冒泡、选择、插入)
以下是内容的摘要: 本文介绍了三种排序算法:冒泡排序、选择排序和插入排序。冒泡排序通过不断交换相邻的逆序元素逐步排序,最坏情况下需要 O(n^2) 次比较。选择排序在每轮中找到剩余部分的最小元素并放到已排序序列的末尾,同样具有 O(n^2) 时间复杂度。插入排序则是将每个元素插入到已排序序列的正确位置,时间复杂度也是 O(n^2),但空间复杂度为 O(1)。
|
5月前
|
算法
leetcode题解:121.买卖股票的最佳时机
leetcode题解:121.买卖股票的最佳时机
40 0
|
2月前
|
Unix Shell Linux
LeetCode刷题 Shell编程四则 | 194. 转置文件 192. 统计词频 193. 有效电话号码 195. 第十行
本文提供了几个Linux shell脚本编程问题的解决方案,包括转置文件内容、统计词频、验证有效电话号码和提取文件的第十行,每个问题都给出了至少一种实现方法。
LeetCode刷题 Shell编程四则 | 194. 转置文件 192. 统计词频 193. 有效电话号码 195. 第十行