题解 | #买卖股票的最好时机(一) 与连续子数组最大值解法一致#

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

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

import java.util.*;


public class Solution {
    /**
     * 
     * @param prices int整型一维数组 
     * @return int整型
     */
    public int maxProfit (int[] prices) {
        // write code here
        if(prices.length == 0){
            return 0;
        }
        int[] profit = new int[prices.length];
        int lowerPrice = prices[0];
        for(int i = 0; i < prices.length; i++){
            if(prices[i] > lowerPrice){
                profit[i] = prices[i] - lowerPrice;
            }
            else {
                profit[i] = 0;
                lowerPrice = prices[i];
            }
        }
        Arrays.sort(profit);
        return profit[profit.length - 1];
    }
}
全部评论

相关推荐

11-15 19:28
已编辑
蚌埠坦克学院 硬件开发
点赞 评论 收藏
分享
10-28 14:42
门头沟学院 Java
watermelon1124:因为嵌入式炸了
点赞 评论 收藏
分享
评论
点赞
收藏
分享
牛客网
牛客企业服务