您的位置:首页 > 其它

<LeetCode OJ> 122. Best Time to Buy and Sell Stock II

2016-01-15 22:02 489 查看


122. Best Time to Buy and Sell Stock II

My Submissions

Question

Total Accepted: 73349 Total
Submissions: 179674 Difficulty: Medium

Say you have an array for which the ith element is the price of a given stock
on day i.
Design an algorithm to find the maximum profit. You may complete as many transactions as you like
(ie, buy one and sell one share of the stock multiple times). However, you may not engage in multiple transactions at the same time
(ie, you must sell the stock before you buy again).
同一时间不能做多次交易(买一次再卖一次,或者卖一次再买一次算一次交易),意思就是说在你买股票之前你必须卖掉股票
(即你手头最多允许保留一只股票,同时隐含了每次只能交易一次的意思)

Subscribe to see which companies asked this question

Hide Tags
Array Greedy

Show Similar Problems

分析:

题目理解错误,刚开始没有任何思路....这题通过率40%,我的内心是崩溃的!!!

题目:用一个数组表示股票每天的价格,数组的第i个数表示股票在第i天的价格。设计一个算法找出最大利润

但一次只能交易一支股票,也就是说手上最多只能持有一支股票,求最大收益。

分析:贪心法。从前向后遍历数组,只要当天的价格高于前一天的价格(即为了最大利润,只要有利润存在就利用交易次数的无限制贪心的获取),就累加到收益中。

代码:时间O(n),空间O(1)。

class Solution {
public:
    int maxProfit(vector<int>& prices) {
        if(prices.size() < 2) 
            return 0;  
        int profit = 0;  
        for(auto ite = prices.begin()+1; ite != prices.end(); ite++) 
            profit += max(*ite - *(ite-1),0);  
        return profit;  
    }
};


注:本博文为EbowTang原创,后续可能继续更新本文。如果转载,请务必复制本条信息!

原文地址:http://blog.csdn.net/ebowtang/article/details/50526099

原作者博客:http://blog.csdn.net/ebowtang
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: