没有合适的资源?快使用搜索试试~ 我知道了~
这是本人写的KMP算法以及失败函数,能编译,本人新手,求指教
资源推荐
资源详情
资源评论
#include"iostream"
#include"string"
using namespace std;
class String{
private:
char*str;
int size;
int *f;
public:
String(char*s);
~String(void);
int stringmatching(String&s,String&p);
void fail(String&p);
int fastfind(String&pat)const;
};
/////////////////////////////////////
String::String(char*s){ //构造函数
size=strlen(s);
f=new int[size];
str=new char[size+1];
if(str==NULL){
cout<<"申请空间失败"<<endl;
return;
}
strcpy(str,s);
};
String::~String(void){delete[]str;}
//////////////////////
int String::stringmatching(String&s,String&p){ //朴素模式匹配算法
cout<<"进行朴素匹配"<<endl;
#include"string"
using namespace std;
class String{
private:
char*str;
int size;
int *f;
public:
String(char*s);
~String(void);
int stringmatching(String&s,String&p);
void fail(String&p);
int fastfind(String&pat)const;
};
/////////////////////////////////////
String::String(char*s){ //构造函数
size=strlen(s);
f=new int[size];
str=new char[size+1];
if(str==NULL){
cout<<"申请空间失败"<<endl;
return;
}
strcpy(str,s);
};
String::~String(void){delete[]str;}
//////////////////////
int String::stringmatching(String&s,String&p){ //朴素模式匹配算法
cout<<"进行朴素匹配"<<endl;
资源评论
越爱
- 粉丝: 0
- 资源: 2
上传资源 快速赚钱
- 我的内容管理 展开
- 我的资源 快来上传第一个资源
- 我的收益 登录查看自己的收益
- 我的积分 登录查看自己的积分
- 我的C币 登录后查看C币余额
- 我的收藏
- 我的下载
- 下载帮助
最新资源
资源上传下载、课程学习等过程中有任何疑问或建议,欢迎提出宝贵意见哦~我们会及时处理!
点击此处反馈
安全验证
文档复制为VIP权益,开通VIP直接复制
信息提交成功