码迷,mamicode.com
首页 > 其他好文 > 详细

leetcode Best Time to Buy and Sell Stock

时间:2018-04-01 01:01:24      阅读:124      评论:0      收藏:0      [点我收藏+]

标签:leetcode   min   int   price   技术分享   gpo   code   turn   log   

//有个图片解释,需要编辑模式才能看。。。。

class Solution { public int maxProfit(int[] prices) { int minprice = Integer.MAX_VALUE; int profit = 0; for(int i=0;i<prices.length;i++){ if(prices[i]<minprice){ minprice = prices[i]; } else if(prices[i]-minprice>profit){ profit = prices[i]-minprice; } } return profit; } }

                                                                                                      技术分享图片

leetcode Best Time to Buy and Sell Stock

标签:leetcode   min   int   price   技术分享   gpo   code   turn   log   

原文地址:https://www.cnblogs.com/mxk-star/p/8684778.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!