股票收益最大化
思路:
计算差值: 后一天的价格 - 前一天的价格
如果是正数,说明股票上涨,连续为正则为持续上涨,仍然是赚的
如果是负数,股票下跌,不持有该股,不管我们的事
代码:
import...listOne.append(temp)
# 测试数据 股票价格
print("股票价格", listOne)
print("-"*20)
def maxProfit(tempList):
# 计算股票最大收益...)
return sum(newList2)
if __name__ == '__main__':
result = maxProfit(listOne)
print("股票最大收益...89]
--------------------
股票价格差值 [7, -25, -3, 13, -31, 15, 24, -42, 54]
股票增值数 [7, 13, 15, 24, 54]
股票最大收益