继承以及的思路,,但应该也可以写成的形式
class Solution {public: int maxProfit(vector & prices, int fee) { int len=prices.size(); if(len<=1) return 0; vector buy(len,-prices[0]-fee); vector sell(len,0); int res=0; for(int i=1;i
本文共 364 字,大约阅读时间需要 1 分钟。
继承以及的思路,,但应该也可以写成的形式
class Solution {public: int maxProfit(vector & prices, int fee) { int len=prices.size(); if(len<=1) return 0; vector buy(len,-prices[0]-fee); vector sell(len,0); int res=0; for(int i=1;i
转载于:https://www.cnblogs.com/joelwang/p/10868717.html