首页 > 其他 > 详细

leetcode || 121、Best Time to Buy and Sell Stock

时间:2015-04-27 11:23:27      阅读:136      评论:0      收藏:0      [点我收藏+]

problem:

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.

Hide Tags
 Array Dynamic Programming
题意:给定一支股票的价格表,决定哪天买哪天卖受益最大,卖的时间在买的后面

thinking:

(1)其实就是求一个数组元素两个元素之间的最大差值,使用后面的数减去前面的数

(2)典型的 DP思路,开一个N大小的数组,记录该位置的减去前面最小元素的差值,

最后找出差值数组的最大值即可,时间复杂度O(N)

code:

class Solution {
public:
    int maxProfit(vector<int>& prices) {
        int n=prices.size();
        if(n==0)
            return 0;
        vector<int> f(n,0);
        int minprice=prices[0];
        for(int i=0;i<n;i++)
        {
            minprice=min(minprice,prices[i]);
            f[i]=prices[i]-minprice;
        }
        int profit=f[0];
        for(int j=0;j<n;j++)
            profit=max(profit,f[j]);
        return profit;
    }
};


leetcode || 121、Best Time to Buy and Sell Stock

原文:http://blog.csdn.net/hustyangju/article/details/45306207

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!