一个C/C++小程序题?请各位大侠帮忙解决,谢谢!

编写(c/c++)函数intindex(char*s,char*t),返回字符串t在字符串s中出现的位置,如果在s中没有与t匹配的字串,就返回-1。如输入abcdefgh... 编写(c/c++)函数 int index (char *s ,char *t ) ,返回字符串 t 在字符串 s 中出现的位置,如果在 s 中没有与 t 匹配的字串,就返回 -1 。如输入abcdefgh和de,则字符串de 在 abcdefgh 中左起第 4 个位置。
我是初学者,我很笨,编了很长时间还是没成功,很郁闷,请大家帮帮忙,谢谢了!
展开
 我来答
1317204986
2011-04-18 · TA获得超过492个赞
知道小有建树答主
回答量:291
采纳率:0%
帮助的人:351万
展开全部
#include<stdio.h>
#include<string.h>
int
index(char *s,char *t)
{
int k,i,j,flag;
char *p;
for(i=0;i<strlen(s);i++){
k=-1;
if(s[i]==*t){
j=i;k=i+1;p=t;
for(;j<strlen(s)&&*p!=0;j++,p++)
if(s[j]!=*p)break;
if(*p==0)flag=1;
}
if(flag==1)break;
}
return k;
}
int
main()
{
char str1[100],str2[100];
int n;
gets(str1);
gets(str2);
n=index(str1,str2);
printf("%d\n",n);
return 0;
}
liujiahi
2011-04-18 · TA获得超过1001个赞
知道小有建树答主
回答量:621
采纳率:66%
帮助的人:412万
展开全部
#include <stdio.h>
#define MAXLINE 100
int strindex(char source[ ], char searchfor[ ]);
char pattern[] = "ould"; /*要查找的模式*/

/* 找出所有与模式匹配的行*/
int main (void)
{
char *line[MAXLINE] = {
"How could you do that!",
"You cann't do that!",
"Would you like to do that?",
"No, I don't.",
NULL
};
int i = 0;

while (line[i])
if ( strindex(line[i++], pattern) >= 0 ) {
printf( "Yes\n");
}
else
printf ("No\n");
return 0;
}
/* strindex:返回t在s中的位置,若未找到则返回-1 */
int strindex(char s[], char t[] )
{
int i, j, k;
for ( i = 0; s[i] != '\0'; i++ ) {
/*这一行是关键,找到第一个字母后继续向后遍历到t末尾结束*/
for ( j =i, k = 0; t[k] != '\0' && s[j] ==t[k]; j++, k++ )
;
if ( k > 0 && t[k] == '\0' )
return i;
}
return -1;
}
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式