LeetCode Best Time to Buy and Sell Stock II(贪心)

本文介绍了一种利用贪心算法解决股票交易问题的方法,旨在帮助理解如何通过算法最大化投资收益。该算法允许进行多次买入卖出操作,关键在于抓住每次股价上升的机会。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

Say you have an array for which the ith element is the price of a given stock on day i.

Design an algorithm to find the maximum profit. You may complete as many transactions as you like (ie, buy one and sell one share of the stock multiple times). However, you may not engage in multiple transactions at the same time (ie, you must sell the stock before you buy again).

题意:给出一个数组,数组中元素表示股票在第i天的股价,可以交易任意次,求最大收益

思路:贪心算法。只要满足递增关系,就将相应的数相加即可

代码如下:

class Solution
{
    public int maxProfit(int[] prices)
    {
        int len = prices.length;

        int ans = 0;
        for (int i = 1; i < len; i++)
        {
            int diff = prices[i] - prices[i - 1];
            if (diff > 0)
            {
                ans += diff;
            }
        }

        return ans;
    }
}


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

kgduu

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值