leetcode第一刷_Best Time to Buy and Sell Stock
Posted llguanli
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了leetcode第一刷_Best Time to Buy and Sell Stock相关的知识,希望对你有一定的参考价值。
这样的题就不要去考虑N^2的算法了。肯定会超时的。乍一看,非常可能会想到贪心,可是普通的贪心思路是不行的,比方想找到一个最小值用来买入。尽管它跟最大值之间的差一定是最好的,可是最大值出如今它前面就不行了,找出如今它后面的最大值,仅仅只是是一个局部最优,非常可能前面的最大和次小比他们要好。
所以呢,贪心找的不是两个点,而是差。这种话。每一步都维护一个最小值,然后算跟当前最小之间的差来更新最后的结果。
代码简洁,不在赘述。
class Solution { public: int maxProfit(vector<int> &prices) { int len = prices.size(); if(len<=1) return 0; int mmax_profit = 0, mmin = prices[0]; for(int i=1;i<len;i++){ mmin = min(mmin, prices[i]); mmax_profit = max(mmax_profit, prices[i] - mmin); } return mmax_profit; } };
以上是关于leetcode第一刷_Best Time to Buy and Sell Stock的主要内容,如果未能解决你的问题,请参考以下文章
110_leetcode_Best Time to Buy and sell Stock II
99_leetcode_Best Time to Buy and sell Stock
24.leetcode121_best_time_to_buy_and_sell_stock
算法分析与设计第一周121.Best Time to Buy and Sell Stock&122. Best Time to Buy and Sell Stock II