0
点赞
收藏
分享

微信扫一扫

20220310数组:买卖股票的最佳时机

心存浪漫 2022-03-12 阅读 49
数据结构

        题目描述:给定一个数组 prices ,其中 prices[i] 表示股票第 i 天的价格。在每一天,你可能会决定购买和/或出售股票。你在任何时候 最多 只能持有 一股 股票。你也可以购买它,然后在 同一天 出售。返回 你能获得的 最大 利润 。

        编码实现:

    public int maxProfit(int[] prices) {
        int result = 0;
        if (prices == null || prices.length <= 1){
            return result;
        }

        for (int i=0;i<prices.length-1;i++){
            if (prices[i]<prices[i+1]){
                result += (prices[i+1]-prices[i]);
            }
        }
        return result;
    }
举报

相关推荐

0 条评论