C++实现买卖股票的最佳时间 C++实现LeetCode(121.买卖股票的最佳时间)

软件发布|下载排行|最新软件

当前位置:首页IT学院IT技术

C++实现买卖股票的最佳时间 C++实现LeetCode(121.买卖股票的最佳时间)

Grandyang   2021-07-26 我要评论
想了解C++实现LeetCode(121.买卖股票的最佳时间)的相关内容吗,Grandyang在本文为您仔细讲解C++实现买卖股票的最佳时间的相关知识和一些Code实例,欢迎阅读和指正,我们先划重点:C++实现买卖股票的最佳时间,C++实现LeetCode买卖股票的最佳时间,下面大家一起来学习吧。

[LeetCode] 121.Best Time to Buy and Sell Stock 买卖股票的最佳时间

Say you have an array for which the ith element is the price of a given stock on day i.

If you were only permitted to complete at most one transaction (ie, buy one and sell one share of the stock), design an algorithm to find the maximum profit.

这道题相当简单,感觉达不到Medium的难度,只需要遍历一次数组,用一个变量记录遍历过数中的最小值,然后每次计算当前值和这个最小值之间的差值最为利润,然后每次选较大的利润来更新。当遍历完成后当前利润即为所求,代码如下:

C++ 解法:

class Solution {
public:
    int maxProfit(vector<int>& prices) {
        int res = 0, buy = INT_MAX;
        for (int price : prices) {
            buy = min(buy, price);
            res = max(res, price - buy);
        }
        return res;
    }
};

Java 解法:

public class Solution {
    public int maxProfit(int[] prices) {
        int res = 0, buy = Integer.MAX_VALUE;
        for (int price : prices) {
            buy = Math.min(buy, price);
            res = Math.max(res, price - buy);
        }
        return res;
    }
}

类似题目:

Best Time to Buy and Sell Stock with Cooldown

Best Time to Buy and Sell Stock IV

Best Time to Buy and Sell Stock III

Best Time to Buy and Sell Stock II

Copyright 2022 版权所有 软件发布 访问手机版

声明:所有软件和文章来自软件开发商或者作者 如有异议 请与本站联系 联系我们