- 买卖股票的最佳时机 II
给定一个数组 prices ,其中 prices[i] 表示股票第 i 天的价格。
在每一天,你可能会决定购买和/或出售股票。你在任何时候 最多 只能持有 一股 股票。你也可以购买它,然后在 同一天 出售。
返回 你能获得的 最大 利润 。
class Solution {
public:
//贪心算法,将利润分块
int maxProfit(vector<int>& prices) {
int n=prices.size();
int ans=0;
if(n==1)
return 0;
for(int i=1;i<n;i++)
{
ans=max(ans,ans+prices[i]-prices[i-1]);
}
return ans;
}
};