码迷,mamicode.com
首页 > 其他好文 > 详细

leetcode -- Best Time to Buy and Sell Stock II

时间:2014-05-30 02:46:12      阅读:318      评论:0      收藏:0      [点我收藏+]

标签:c   style   class   blog   code   java   

bubuko.com,布布扣
class Solution {
public:
    int maxProfit(vector<int> &prices) {
        if(prices.size() == 0) return 0;
        vector<int> f(prices.size());
        f[0] = 0;
        for(int i = 1;i< prices.size();i++)
        {
            if(prices[i] > prices[i - 1])
               f[i] = f[i - 1] + prices[i] - prices[i - 1];
            else
               f[i] = f[i-1];
        }
        return f[prices.size() - 1];
    }
};
bubuko.com,布布扣

 

leetcode -- Best Time to Buy and Sell Stock II,布布扣,bubuko.com

leetcode -- Best Time to Buy and Sell Stock II

标签:c   style   class   blog   code   java   

原文地址:http://www.cnblogs.com/berkeleysong/p/3757900.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!