摘要: 将所有的递增段的增加值叠加起来 class Solution { public int maxProfit(int[] prices) { if (prices.length <= 1){ return 0; } int pre = 0; int p = 1; int maxPro = 0; int 阅读全文
posted @ 2024-02-03 14:32 破忒头头 阅读(14) 评论(0) 推荐(0)