热门标签
更多>
搜索结果
查询Tags标签: mainlen,共有 2条记录-
BF算法模式匹配
#include<iostream> using namespace std; int findstr(char* mainstr, char* sonstr); int main() {char mainstr[100], sonstr[100];while (1){cin >> mainstr >> sonstr;int set = findstr(mainstr, sonstr);if (set == -1)cout << "匹配…
2022/1/9 11:05:07 人评论 次浏览 -
BF算法模式匹配
#include<iostream> using namespace std; int findstr(char* mainstr, char* sonstr); int main() {char mainstr[100], sonstr[100];while (1){cin >> mainstr >> sonstr;int set = findstr(mainstr, sonstr);if (set == -1)cout << "匹配…
2022/1/9 11:05:07 人评论 次浏览