最小覆蓋字串 C++

代碼: #include<iostream> #include<string> using namespace std; class Solution { public: string minWindow(string S, string T) { if (T.size() > S.size()) return ""; string res = "";
相關文章
相關標籤/搜索