Best Time to Buy and Sell Stock
Objective:
Find out the lowest point to buy-in and find out the a following hightest point to sell-out. And the maximal profit is equivalent to the max difference between the highest point and lowest point.
Before solving this problem, suggest referring to the "maximum subarray" first. Then you will get an idea how to set the pointer and how to store the "buy" and "sell" variables.
class Solution { public: int maxProfit(vector<int> &prices) { // Note: The Solution object is instantiated only once and is reused by each test case. if (prices.empty()) return 0; int cur = 0; // the pointer int buy = 0; // date to buy int sell = 0; // day to sell int maxProf = 0; // the maximum profit for(int i=1;i<prices.size();i++) { if(prices[i]<prices[cur]) cur = i; else if(prices[i]>prices[cur] && prices[i]-prices[cur]>maxProf) { buy = cur; sell = i; maxProf = prices[i]-prices[cur]; } } return maxProf; } };
【推荐】还在用 ECharts 开发大屏?试试这款永久免费的开源 BI 工具!
【推荐】国内首个AI IDE,深度理解中文开发场景,立即下载体验Trae
【推荐】编程新体验,更懂你的AI,立即体验豆包MarsCode编程助手
【推荐】轻量又高性能的 SSH 工具 IShell:AI 加持,快人一步