题解 | #买卖股票的最好时机(一)#

买卖股票的最好时机(一)

https://www.nowcoder.com/practice/64b4262d4e6d4f6181cd45446a5821ec

class Solution {
public:
    /**
     * 
     * @param prices int整型vector 
     * @return int整型
     */
    int maxProfit(vector<int>& prices) {
        int len = prices.size();
        vector<int> dp(len, 0);//i买入获取最大利润
        int maxProfit = 0;
        // dp[j] = max(nums[j]-nums[i], dp[j]);
        for(int i=0; i<len-1; i++) { // i买入
            for(int j=i+1; j<len; j++) {// j卖出
                dp[i] = max(dp[i], prices[j]-prices[i]);
                // cout<< i<< " "<< j<< ":"<< prices[j]-prices[i]<<endl;
                maxProfit = max(dp[i], maxProfit);
            }
        }
        return maxProfit;
    }
};

全部评论

相关推荐

喜欢走神的孤勇者练习时长两年半:爱华,信华,等华,黑华
点赞 评论 收藏
分享
服从性笔试吗,发这么多笔,现在还在发。
蟑螂恶霸zZ:傻 x 公司,发两次笔试,两次部门匹配挂,
投递金山WPS等公司10个岗位 >
点赞 评论 收藏
分享
评论
点赞
收藏
分享
牛客网
牛客企业服务