简单匹配算法-2

#include 
#include 
using namespace std;

int SimpleMatch(string x1, string x2)
{
    int i=0, j=0;
    while(i

你可能感兴趣的:(简单匹配算法-2)