摘要:
#include#include#includeusing namespace std;void GetNext(char *str,int next[]){ int j,k; j=0;k=-1;next[0]=-1; while(str[j]!='\0') { ... 阅读全文
摘要:
1已知strcpy函数的原型是char *strcpy(char *strDest, const char *strSrc);其中strDest是目的字符串,strSrc是源字符串。a)不调用C++/C的字符串库函数,请写出函数strcpy。b)strcpy能把strSrc的内容复制到strDest... 阅读全文