LeetCode初级算法-,买卖股票数组算法

题目:
给定一个数组 prices ,其中 prices[i] 是一支给定股票第 i 天的价格。
设计一个算法来计算你所能获取的最大利润。你可以尽可能地完成更多的交易(多次买卖一支股票)。
JAVA:
class Solution {
public int maxProfit(int[] prices) {
int length = prices.length;
if(length ==0) return 0;
int i=0;
int max = 0;//总收益
for(int j=1;jprices[j]){//当天价格比第二天贵,则不买,有票就卖掉

}else{//买入
max = max + (prices[j] - prices[i]);
}
i++;
}

return max;
}
}
C++:
class Solution {
public

LeetCode初级算法-,买卖股票数组算法最先出现在Python成神之路

版权声明:
作者:dingding
链接:https://www.techfm.club/p/11193.html
来源:TechFM
文章版权归作者所有,未经允许请勿转载。

THE END
分享
二维码
< <上一篇
下一篇>>