免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 1443 | 回复: 0
打印 上一主题 下一主题

[C] 《c prime plus》课后一习题,大神指点下? [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2012-08-09 15:35 |只看该作者 |倒序浏览
#include <stdio.h>
#include <string.h>

#define MAX 100
#define STOP "quit"

// Write a function called string_in() that takes two string pointers as arguments. If the second string is contained in the first string, have the function return the address at which the contained string begins. For instance, string_in("hats", "at" would return the address of the a in hats. Otherwise, have the function return the null pointer. Test the function in a complete program that uses a loop to provide input values for feeding to the function.


char *string_in(char *,char *);

int main(void)
{
        char s1[MAX],s2[MAX];
        char *ptr;

        printf("Input the first string(less than %d quit to quit):\n",MAX);
        gets(s1);
        while(strcmp(s1,STOP)!=0)
        {
                printf("Input the second string:\n";
                gets(s2);
                ptr=string_in(s1,s2);       
                if(ptr)
                {
                        printf("The address's of %s is %p\n",s1,s1);
                        printf("The first occurrence of %s in %s is %p\n",s2,s1,ptr);       
                }
                else
                        printf("There is no %s in %s\n",s2,s1);

                printf("Input the first string(less than %d quit to quit):\n",MAX);
                gets(s1);
        }
        return 0;
}

char *string_in(char *s1,char *s2)
{
        char *pt1,*pt2;
        pt1=s1;
        pt2=s2;

        for(;*pt1 && *pt2
        {
                if(*pt1==*pt2)
                {
                        pt1++;
                        pt2++;
                }
                else
                {
                        pt1++;
                        pt2=s2;
                }
        }
        if(! *pt2)
                return pt1-strlen(s2);
        else
                return NULL;
}

输入两个字符串,找出第二个字符串在第一个字符串中第一次出现的位置,我初步测试感觉是满足题目的,但是感觉有点乱,望大神指点下?
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP