代码随想录算法训练营day48|| 第八章 动态规划

121. 买卖股票的最佳时机

给定一个数组 prices ,它的第 i 个元素 prices[i] 表示一支给定股票第 i 天的价格。

你只能选择 某一天 买入这只股票,并选择在 未来的某一个不同的日子 卖出该股票。设计一个算法来计算你所能获取的最大利润。

返回你可以从这笔交易中获取的最大利润。如果你不能获取任何利润,返回 0 。题目

贪心算法

class Solution {
public:
    int maxProfit(vector& prices) {
        int mi=prices[0];
        int mx=0;
        if(prices.size()<=1){
            return 0;
        }
        for(int i=1;i

动态规划:

class Solution {
public:
    int maxProfit(vector& prices) {
        int len=prices.size();
        if(len==0){
            return 0;
        }
        vector>dp(len,vector(2,0));
        dp[0][0]-=prices[0];
        dp[0][1]=0;
        for(int i=1;i

122.买卖股票的最佳时机II

给你一个整数数组 prices ,其中 prices[i] 表示某支股票第 i 天的价格。

在每一天,你可以决定是否购买和/或出售股票。你在任何时候 最多 只能持有 一股 股票。你也可以先购买,然后在 同一天 出售。

返回 你能获得的 最大 利润 。题目

贪心算法:

class Solution {
public:
    int maxProfit(vector& prices) {
        int result=0;
        for(int i=1;i

动态规划:

class Solution {
public:
    int maxProfit(vector& prices) {
        int len=prices.size();
        if(len==0){
            return 0;
        }
        vector> dp(len,vector(2,0));
        dp[0][0]-=prices[0];
        dp[0][1]=0;
        for(int i=1;i

你可能感兴趣的:(动态规划,算法)