北大程序设计与算法(三)测验题汇总(2020春季) 描述 补足MyString类,使程序输出指定结果 #include #include #include using namespace std; class MyString { char * p; public: MyString(const char * s) { if( s) { p = new char[strlen(s) + 1]; strcpy(p,s); } else p = NULL; } ~MyString() { if(p) delete [] p; } // 在此处补充你的代码 }