一个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 个位置。
我是初学者,我很笨,编了很长时间还是没成功,很郁闷,请大家帮帮忙,谢谢了! 展开
我是初学者,我很笨,编了很长时间还是没成功,很郁闷,请大家帮帮忙,谢谢了! 展开
2个回答
展开全部
#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;
}
#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;
}
展开全部
#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;
}
#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;
}
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询