摘要: #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') { ... 阅读全文
posted @ 2014-08-25 19:26 calmound 阅读(159) 评论(0) 推荐(0) 编辑
摘要: 1已知strcpy函数的原型是char *strcpy(char *strDest, const char *strSrc);其中strDest是目的字符串,strSrc是源字符串。a)不调用C++/C的字符串库函数,请写出函数strcpy。b)strcpy能把strSrc的内容复制到strDest... 阅读全文
posted @ 2014-08-25 16:42 calmound 阅读(196) 评论(0) 推荐(0) 编辑