改写要求1:将字符数组str改为字符指针p,动态开辟存储空间
改写要求2:增加统计关键字个数的函数void CountKeyWords()
改写要求3: 增加替换函数void FindKeyWords()
#include <cstdlib> #include <iostream> #include <string> using namespace std; class WORDNUM { char *p; double c; public: WORDNUM(char *s) { p=new char[strlen(s)]; strcpy(p,s); c=0; } void process(); void CountKeyWords(string key[],int len); void FindKeyWords(string key[],string swapkey[],int len); void print() { char* r=new char[strlen(p)]; strcpy(r,p); while(*r!='