算法 - swift

算法:121. 买卖股票的最佳时机 - Swift

2019-12-18  本文已影响0人  其实也没有
func dynamicMaxProfit(_ prices :[Int]) -> Int{
    // 边界
    if prices.count <= 1 {
        return 0
    }
    // 最小子
    var min_b = prices[0], max_p = 0
    
    // 状态转移
    for idx in 1 ... prices.count - 1 {
        min_b = min(min_b, prices[idx]) 
        max_p = max(max_p, prices[idx] - min_b) 
    }
    return max_p
}
上一篇 下一篇

猜你喜欢

热点阅读