zoukankan      html  css  js  c++  java
  • 含有通配符的字符串匹配

    字符串匹配问题,给定两个字符串。求字符串2。在字符串1中的最先匹配结果。字符串2中能够存在'*'符号,且该符号能够代表随意字符,即字符串2中存在通配符。


    e.g. 输入:abcdefghabef, a*f 输出:abcdef

    #include <iostream>
    #include <string>
    using namespace std;
    bool Match(const string &s1,const string &s2,string &result)
    {
    	int i=0;
    	if(s2.empty())//已经到了s2的尾部。说明都匹配了(s2和s1的推断顺序不能改)
    		return true;
    	if(s1.empty())//s1已经到了尾部。而s2还没到尾部,说明没有全然匹配
    	{
    		result="";
    		return false;
    	}
    	if(s1[i]==s2[i])//假设相等,则匹配了一个元素。接着依次匹配下一个元素
    	{
    		result.push_back(s1[i]);
    		Match(s1.substr(i+1),s2.substr(i+1),result);
    	}
    	else if(s2[i]=='*')//假设遇到*号。则跳过*号,匹配s2的其它元素
    	{
    
    		Match(s1,s2.substr(i+1),result);
    	}
    	else//假设s1和s2的第一个元素不相等,则匹配s1的下一个元素
    	{
    		result.push_back(s1[i]);
    		Match(s1.substr(i+1),s2,result);
    	}
    }
    int main()
    {
    	string s1="abcdefghabef";
    	string s2="a*f";
    	string result;
    	Match(s1,s2,result);
    	cout<<result<<endl;
    	return 0;
    }


    參考

    http://www.tuicool.com/articles/YZFJBb

    http://wenku.it168.com/d_001232271.shtml

  • 相关阅读:
    SVM的新理解
    特征提取,特征选择
    条件随机场
    分类、检测、识别
    matlab fgetl()
    matlab fopen()
    rar ubuntu
    makefile for opencv
    [洛谷P1231] 教辅的组成
    [洛谷P1514]引水入城
  • 原文地址:https://www.cnblogs.com/clnchanpin/p/6789796.html
Copyright © 2011-2022 走看看