力扣904.水果成篮
-
哈希表记录水果种类 超过两个就把之前的去了
-
class Solution { public: int totalFruit(vector<int>& fruits) { int res=0,n = fruits.size(); unordered_map<int,int> cnt; for(int i=0,j=0;i<n;i++) { cnt[fruits[i]] ++; while(cnt.size() > 2) { if(-- cnt[fruits[j]] == 0) cnt.erase(fruits[j]); j ++; } res = max(res,i-j+1); } return res; } };
本站资源均来自互联网,仅供研究学习,禁止违法使用和商用,产生法律纠纷本站概不负责!如果侵犯了您的权益请与我们联系!
转载请注明出处: 免费源码网-免费的源码资源网站 » 力扣904.水果成篮
发表评论 取消回复