Chinaunix首页 | 论坛 | 博客
  • 博客访问: 47043
  • 博文数量: 33
  • 博客积分: 1301
  • 博客等级: 中尉
  • 技术积分: 335
  • 用 户 组: 普通用户
  • 注册时间: 2008-08-31 21:06
文章分类
文章存档

2009年(33)

我的朋友

分类: C/C++

2009-06-25 15:38:00

 
Chapter 4 - Functions and Program Structure
第4章 函数与程序结构
 
4.1 Basics of Functions
4.1 函数的基本知识
 
模式匹配的例子:

#include<stdio.h>

int getline(char *s1, int lim){
    char *sp;
    sp = s1;
    while(lim > 1 && (*sp = getchar()) != EOF && *sp != '\n'){
        lim--;
        sp++;
    }
    if(*sp == '\n')
        sp++;
    *sp = '\0';
    return sp - s1;
}

int strindex(const char *s1, const char *s2){
    const char *s3, *sp1, *sp2;
    s3 = s1;
    while(*s1){
        sp1 = s1; sp2 = s2;
        while(*sp1 == *sp2 && *sp1 != '\0'){
            sp1++; sp2++;
        }
        if(*sp2 == '\0')
            return s1 - s3;
        s1++;
    }
}

int main(){
    char s1[300], s2[100];
    char c;
    
    scanf("%s", s2);

    while((c = getchar()) == '\n')
        ;
    ungetc(c, stdin);
    
    while(getline(s1, 300) > 0){
        if(strindex(s1, s2) >= 0)
            printf("%s", s1);
    }
}

阅读(384) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~