zoukankan      html  css  js  c++  java
  • 150. 买卖股票的最佳时机 II

    150. 买卖股票的最佳时机 II

    中文English

    给定一个数组 prices 表示一支股票每天的价格.

    你可以完成任意次数的交易, 不过你不能同时参与多个交易 (也就是说, 如果你已经持有这支股票, 在再次购买之前, 你必须先卖掉它).

    设计一个算法求出最大的利润.

    样例

    样例 1:

    输入: [2, 1, 2, 0, 1]
    输出: 2
    解释: 
        1. 在第 2 天以 1 的价格买入, 然后在第 3 天以 2 的价格卖出, 利润 1
        2. 在第 4 天以 0 的价格买入, 然后在第 5 天以 1 的价格卖出, 利润 1
        总利润 2.
    

    样例 2:

    输入: [4, 3, 2, 1]
    输出: 0
    解释: 不进行任何交易, 利润为0.
    输入测试数据 (每行一个参数)如何理解测试数据?
    class Solution:
        """
        @param prices: Given an integer array
        @return: Maximum profit
        """
        '''
        大致思路:
        1.如果下一个价格低于当前价格,则卖出,直到结束,返回
        '''
        def maxProfit(self, prices):
            if prices == []:
                return 0
            total = 0
            isSell = True
            prices.append(min(prices)-1)
            for i in range(len(prices)-1):
                if prices[i] < prices[i+1]:
                    if isSell == True:
                        buy_price = prices[i]
                        isSell = False
                    
                else:
                    if isSell == False:
                        sell_price = prices[i]
                        total += sell_price - buy_price
                        isSell = True
            return total
  • 相关阅读:
    c++的const总结
    http框架--Forest 的使用
    SQL 语句大全
    Mysql 总结
    【Spring注解驱动开发】使用@Scope注解设置组件的作用域
    注册中心EUREKA(二)--配置列表
    Linux命令发送Http GET/POST请求
    真正理解NIO
    高并发下接口幂等性解决方案
    代码量统计工具
  • 原文地址:https://www.cnblogs.com/yunxintryyoubest/p/12832512.html
Copyright © 2011-2022 走看看