首页
社区
课程
招聘
[求助]
发表于: 2006-11-21 22:15 3732

[求助]

2006-11-21 22:15
3732
请问斑竹:
一个查找程序中特定字符的源代码~~~~\
最好C语言的~~~~~~
拜谢~~~~

[培训]内核驱动高级班,冲击BAT一流互联网大厂工作,每周日13:00-18:00直播授课

收藏
免费 0
支持
分享
最新回复 (4)
雪    币: 796
活跃值: (370)
能力值: ( LV9,RANK:380 )
在线值:
发帖
回帖
粉丝
2


我怀疑是大学生的作业 
2006-11-22 10:56
0
雪    币: 150
活跃值: (10)
能力值: ( LV2,RANK:10 )
在线值:
发帖
回帖
粉丝
3
#include <iostream.h>
//#include <
#define MS 20
char a[MS]="whatisit";
char b[MS]="*is*";
int searchStr(char s1[MS],char s2[MS],int p1,int p2);
bool chazhao(char a[MS],char b[MS]);
void main()
{
int i;
cout<<chazhao(a,b);
cin>>i;
}
bool chazhao(char a[MS],char b[MS])
{

int i;
i=searchStr(a,b,1,1);
if(i!=0){i=i-strlen(b)+1;cout<<i<<endl;}
}

//从s1中第n个开始查找s2第m个开始 返回s2的末尾在s1中的位置
/*int searchStr(char s1[MS],char s2[MS],int p1)
{
int i;
for(i=p1
} */
bool cmpStr(char s1[MS],char s2[MS],int p1)
{
int jc=0;
for(i=1;i<=strlen(s2);i++)
{
if(s1[i+p1]!=s2[i])jc=1
if(jc==1)return true;
else return false;
}
}
/* int k;
cout<<p1<<" "<<p2<<endl;
if(s2[p2]==NULL)
return p1;
while(s1[p1]!=NULL)
{
if(s1[p1]==s2[p2])
{
p1++;p2++;
k=searchStr(s1,s2,p1,p2);
if(k==0)
return 0;
else
return k;
}
p1++;
}
return 0;
}*/
2006-11-24 11:39
0
雪    币: 1852
活跃值: (504)
能力值: (RANK:1010 )
在线值:
发帖
回帖
粉丝
4
KMP算法
2006-11-25 21:03
0
雪    币: 1852
活跃值: (504)
能力值: (RANK:1010 )
在线值:
发帖
回帖
粉丝
5
另外,在标题中应该写清楚问题的主题
2006-11-25 21:04
0
游客
登录 | 注册 方可回帖
返回
//