漫画:程序教你玩转股票
public class StockProfit {
public static int maxProfitFor1Time(int prices[]) {
if(prices==null || prices.length==0) {
return 0;
}
int minPrice = prices[0];
int maxProfit = 0;
for (int i = 1; i < prices.length; i++) {
if (prices[i] < minPrice) {
minPrice = prices[i];
} else if(prices[i] - minPrice > maxProfit){
maxProfit = prices[i] - minPrice;
}
}
return maxProfit;
}
public static void main(String[] args) {
int[] prices = {9,2,7,4,3,1,8,4};
System.out.println(maxProfitFor1Time(prices));
}
}
public int maxProfitForAnyTime(int[] prices) {
int maxProfit = 0;
for (int i = 1; i < prices.length; i++) {
if (prices[i] > prices[i-1])
maxProfit += prices[i] - prices[i-1];
}
return maxProfit;
}
更多精彩推荐
点分享 点点赞 点在看
关注公众号:拾黑(shiheibook)了解更多
[广告]赞助链接:
四季很好,只要有你,文娱排行榜:https://www.yaopaiming.com/
让资讯触达的更精准有趣:https://www.0xu.cn/
关注网络尖刀微信公众号
随时掌握互联网精彩
随时掌握互联网精彩
赞助链接
排名
热点
搜索指数
- 1 这本书,智利总统带到秘鲁的会见厅 7972694
- 2 医院CT等收费将执行新规 7976529
- 3 俄称可使用核武器回应乌方 7810728
- 4 世界互联网大会有哪些新看点? 7743747
- 5 东北大爷虎口脱险火到韩国 7641046
- 6 钟南山建议40岁以上每年查肺功能 7579500
- 7 #俄会如何应对本土遭美制导弹打击# 7407377
- 8 重庆一女子为转运盗取寺庙6尊佛像 7385780
- 9 29岁抗癌博主“一只羊吖”去世 7295784
- 10 科技与文化融合的“赛博”水乡 7142388