微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

正则表达式匹配算法

看《代码之美》之美中有个简短而高效的正则表达式匹配算法,这里给一下简单的实现,供学习使用。
#include <iostream>
#include<String>
#include<stdio.h>
using namespace std;

int match(char * regexp,char * text);
int matchhere(char * regexp,char * text);
int matchstar(int c,char *regexp,char * text);

/* match: 在text中查找regexp */
int match(char * regexp,char * text){
    if(regexp[0] == '^'){
        return matchhere(regexp + 1,text);
    }
    do{/* 即使字符串为空时也必须检查 */
        if(matchhere(regexp,text)){
            return 1;
        }
    }while(*text++ != '\0');
    return 0;
}
/* matchhere: 在text中的开头查找regexp */
int matchhere(char * regexp,char * text){
    if(regexp[0] == '\0'){
        return 1;
    }
    if(regexp[1] == '*'){
        return matchstar(regexp[0],regexp + 2,text);
    }
    if(regexp[0] == '$' && regexp[0] == '\0'){
        return *text == '\0';
    }
    if(*text != '\0' && (regexp[0] == '.' || regexp[0] == *text)){
        return matchhere(regexp + 1,text + 1);
    }
    return 0;
}

/* matchstar: 在text的开头查找C*regexp */
int matchstar(int c,char * text){
    do{/* 通配符*匹配零个或者多个实例*/
        if(matchhere(regexp,text)){
            return 1;
        }
    }while(*text != '\0' && (*text++ == c || c == '.'));
    return 0;
}

int main()
{
    char * StrSource = "Plastic We use plastic wrap to protect our foods. We put our garbage in plastic bags or plastic cans. We sit on plastic chairs,play with plastic toys,drink from plastic cups,and wash our hair with shampoo from plastic bottles!Plastic does not grow in nature. It is made by mixing certain things together. We call it a produced or manufactured material. Plastic was first made in the 1860s from plants,such as wood and cotton. That plastic was soft and burned easily.";
    char mystr[50];
    while(true){
        scanf("%s",mystr);
        if(match(mystr,StrSource)){
            cout<<"匹配成功!"<<endl;
        }else{
            cout<<"匹配失败!"<<endl;
        }
    }
    return 0;
}

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐