摘要:
#include <iostream>#include <string.h>using namespace std;#define Maxsize 100void cover(char ch[], char substr[], int index){ int size = strlen(ch); int sub_size = strlen(substr); int result = 0, j = 0; if((index+sub_size)>=size) ch[index] = '\0'; else { for(int i=index+sub_si 阅读全文