03 2022 档案
摘要:#include <iostream> using namespace std; #include <vector> void matrixMatrix(vector<vector<int>>& mat1, vector<vector<int>>& mat2) { /* for (int i = 0
阅读全文
摘要:暴力匹配 #include <iostream> #include <string> using namespace std; int strTsr(string haystack, string needle) { if (needle.empty()) return 0; int n = hay
阅读全文