最小覆盖字串 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 = "";
相关文章
相关标签/搜索