题解 | #买卖股票的最好时机(一)#

买卖股票的最好时机(一)

http://www.nowcoder.com/practice/64b4262d4e6d4f6181cd45446a5821ec

import java.util.*;


public class Solution {
    /**
     * 
     * @param prices int整型一维数组 
     * @return int整型
     */
    public int maxProfit (int[] prices) {
        if(prices == null || prices.length < 2) return 0 ;
        int maxProfit = 0 ;//总的最大的利润
        int cur_pre_min = Integer.MAX_VALUE ;//当前时间之前的最小买入价格
        for(int i = 0 ; i < prices.length ; i ++) {//遍历每一天
            int cur_profit = prices[i] - cur_pre_min ;//当前最大利润
            if(cur_profit > maxProfit) {//当前最大利润大于总的最大利润
                maxProfit = cur_profit ;//更新总的最大利润
            }
            if(prices[i] < cur_pre_min) {//当前价格小于,当前之前的最小买入价格,更新
                cur_pre_min = prices[i] ;
            }
        }
        return maxProfit ;
    }
}

一个菜鸟的算法刷题记录 文章被收录于专栏

分享一个菜鸟的成长记录

全部评论

相关推荐

11-24 00:11
已编辑
广东工业大学 算法工程师
避雷深圳&nbsp;&nbsp;yidao,试用期&nbsp;6&nbsp;个月。好嘛,试用期还没结束,就直接告诉你尽快找下一家吧,我谢谢您嘞
牛客75408465号:笑死,直属领导和 hr 口径都没统一,各自说了一些离谱的被裁理由,你们能不能认真一点呀,哈哈哈哈哈😅😅😅
点赞 评论 收藏
分享
09-29 11:19
门头沟学院 Java
点赞 评论 收藏
分享
点赞 收藏 评论
分享
牛客网
牛客企业服务