java刷题--121 买卖股票的最佳时机

Posted Anrys

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了java刷题--121 买卖股票的最佳时机相关的知识,希望对你有一定的参考价值。

java刷题--121 买卖股票的最佳时机

题目

在这里插入图片描述

代码

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

结果

在这里插入图片描述

以上是关于java刷题--121 买卖股票的最佳时机的主要内容,如果未能解决你的问题,请参考以下文章

[JavaScript 刷题] DP - 买卖股票的最佳时机,leetcode 121

Leecode刷题之旅-C语言/python-121买卖股票的最佳时机

Leetcode刷题100天—121. 买卖股票的最佳时机(数组+双指针)—day24

Leetcode刷题100天—121. 买卖股票的最佳时机(数组+双指针)—day24

Leetcode刷题Python121. 买卖股票的最佳时机

LeetCode 121. 买卖股票的最佳时机