日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 > 编程资源 > 编程问答 >内容正文

编程问答

LeetCode Best Time to Buy and Sell Stock II

發布時間:2025/3/14 编程问答 35 豆豆
生活随笔 收集整理的這篇文章主要介紹了 LeetCode Best Time to Buy and Sell Stock II 小編覺得挺不錯的,現在分享給大家,幫大家做個參考.

原題鏈接在這里:https://leetcode.com/problems/best-time-to-buy-and-sell-stock-ii/

題目:

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).?

題解:

Best Time to Buy and Sell Stock的進階版,但思路去不同。

這里可以進行無數次交易,當然不能比prices.length - 1還多,就是每次股票比前一天差價大于0都進行交易,把這些大于0的差價相加就是最后返回的結果。

Time Complexity: O(prices.length). Space: O(1).

AC Java:

1 public class Solution { 2 public int maxProfit(int[] prices) { 3 if(prices == null || prices.length <= 1){ 4 return 0; 5 } 6 int res = 0; 7 for(int i = 1; i<prices.length; i++){ 8 res+=Math.max(prices[i]-prices[i-1],0); 9 } 10 return res; 11 } 12 }

?

轉載于:https://www.cnblogs.com/Dylan-Java-NYC/p/4824946.html

總結

以上是生活随笔為你收集整理的LeetCode Best Time to Buy and Sell Stock II的全部內容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。