新学的算法预知未来者算法求买股票最大利润问题,后者大于前者则进行处理
Posted z2529827226
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了新学的算法预知未来者算法求买股票最大利润问题,后者大于前者则进行处理相关的知识,希望对你有一定的参考价值。
package com.Long class Solution private int Max=0; public int maxProfit(int[] prices) for(int i=1;i<prices.length;++i) if(prices[i]-prices[i-1]>0) Max+=prices[i]-prices[i-1]; return Max; public class Main public static void main(String[] args)
以上是关于新学的算法预知未来者算法求买股票最大利润问题,后者大于前者则进行处理的主要内容,如果未能解决你的问题,请参考以下文章