摘要:
#include<iostream> #include <cstring> using namespace std; #define MAXLEN 255 /* BF算法,匹配子串 */ typedef struct{ char ch[MAXLEN+1]; int length; }SString; 阅读全文
摘要:
包含头文件 #include <cstring> int main(){ string e = "abcdef1"; char buf[] = {0}; strcpy(buf,e.c_str()); //cout << e.c_str() << endl; //c_str是一个内容为字符串指向字符数 阅读全文