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;j
}else{//买入
max = max + (prices[j] - prices[i]);
}
i++;
}
return max;
}
}
C++:
class Solution {
public
共有 0 条评论