Leetcode中股票問題合集

Best Time to Buy and Sell Stock II 思路:這道題用到了貪心算法。從次日開始,只要比前一天大,那說明就掙錢,那麼就前一天買今天賣,掙差價。 int maxProfit(vector<int>& prices) { int res = 0; int n = prices.size(); for (int i = 0; i
相關文章
相關標籤/搜索