您的位置:首页 > 其它

LeetCode OJ 121 Best Time to Buy and Sell Stock

2015-10-19 12:33 281 查看
题目:

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

思路: 动态规划问题。i处能够获得的最大利润i之后的最大值-i处的price。循环通过倒序可得O(n)的解法

代码如下

class Solution {
public:
int maxProfit(vector<int>& prices) {
if(prices.size()<=1)
return 0;
int maxPrice = prices[prices.size()-1];
int maxprofit=0;

for(int i=prices.size()-1;i>=0;i--){
maxPrice = max(maxPrice,prices[i]);
maxprofit=max(maxPrice-prices[i],maxprofit);
}
return maxprofit;
}
};
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: