摘要: ```c++ #include #include #include using namespace std; void buildMatch(string pattern, int *& match){ int m = pattern.size(); match = (int*)malloc(m * sizeof(int)); match[0] = -1; int i; for(int j = 1 阅读全文
posted @ 2020-04-03 12:50 c_y_yuan 阅读(246) 评论(0) 推荐(0) 编辑