买卖股票的最佳时机⚓︎ Leetcode题目链接 描述⚓︎ 详见中文题目链接。 解答⚓︎ 1 2 3 4 5 6 7 8 9 10 11 12class Solution { public: int maxProfit(vector<int>& prices) { int low = INT_MAX; int res = 0; for (int price : prices) { low = min(low, price); res = max(res, price - low); } return res; } };