随笔- 509  文章- 0  评论- 151  阅读- 22万 

Best Time to Buy and Sell Stock

2014.23.56

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.

Solution:

  To maximize the profit, you have to buy low and sell high, and profit from the margin.

  Let f[n] be the maximum profit you can get by selling on the nth day, then f[n] = price[n] - min(price[0], price[1], ..., price[n - 1]);

  There're two rules:

    1. You would always buy at the lowest price possible.

    2. You must buy before you sell something.

  Just write down what you think with code. You can also think in a reversed manner. It would produce different code, but same outcome.

  Time complexity is O(n), space complexity is O(1).

Accepted code:

复制代码
 1 class Solution {
 2 public:
 3     int maxProfit(vector<int> &prices) {
 4         // IMPORTANT: Please reset any member data you declared, as
 5         // the same Solution instance will be reused for each test case.
 6         int max_value;
 7         int max_profit;
 8         
 9         if(prices.size() <= 0){
10             return 0;
11         }
12         
13         int i, n;
14         
15         n = prices.size();
16         for(i = n - 1; i >= 0; --i){
17             if(i == n - 1){
18                 max_value = prices[i];
19                 max_profit = 0;
20             }else{
21                 if(prices[i] > max_value){
22                     max_value = prices[i];
23                 }
24                 if(max_value - prices[i] > max_profit){
25                     max_profit = max_value - prices[i];
26                 }
27             }
28         }
29         
30         return max_profit;
31     }
32 };
复制代码

 

 posted on   zhuli19901106  阅读(153)  评论(0编辑  收藏  举报
编辑推荐:
· AI与.NET技术实操系列(二):开始使用ML.NET
· 记一次.NET内存居高不下排查解决与启示
· 探究高空视频全景AR技术的实现原理
· 理解Rust引用及其生命周期标识(上)
· 浏览器原生「磁吸」效果!Anchor Positioning 锚点定位神器解析
阅读排行:
· 全程不用写代码,我用AI程序员写了一个飞机大战
· DeepSeek 开源周回顾「GitHub 热点速览」
· 记一次.NET内存居高不下排查解决与启示
· MongoDB 8.0这个新功能碉堡了,比商业数据库还牛
· .NET10 - 预览版1新功能体验(一)
点击右上角即可分享
微信分享提示