//文字列を比較し、2 つの文字列の最初の文字が同じである領域を返します。
static void php_similar_str(const char *txt1, int len1, const char *txt2, int len2, int *pos1, int *pos2, int *max)
{
char *p、*q;
char *end1 = (char *) txt1 + len1;
char *end2 = (char *) txt2 + len2;
int l;
*最大 = 0;
// 文字列を反復処理します
for (p = (char *) txt1; p < end1; p++) {
for (q = (char *) txt2; q < end2; q++) {
for (l = 0; (p + l < end1) && (q + l < end2) && (p[l] == q[l]); l++);
if (l > *max) {
//同じエリア情報を保存
*最大 = 1;
*pos1 = p - txt1;
*pos2 = q - txt2;
}
}
}
}
//再帰関数。txt1 と txt2 内の同じ文字の数を比較します。
static int php_similar_char(const char *txt1, int len1, const char *txt2, int len2)
{
整数の合計;
int pos1, pos2, max;
php_similar_str(txt1, len1, txt2, len2, &pos1, &pos2, &max);
if ((sum = max)) {//このように書く意味は何ですか????!!!!!!
// 前回の異なる部分の前部分を再帰します
if (pos1 && pos2) {
合計 += php_similar_char(txt1, pos1, txt2, pos2);
}
//さまざまな部分の最後の部分を再帰します
if ((pos1 + max < len1) && (pos2 + max < len2)) {
sum += php_similar_char(txt1 + pos1 + max, len1 - pos1 - max,
txt2 + pos2 + 最大、len2 - pos2 - 最大);
}
}
//この比較後の同一文字の数を返します。
合計を返します。
}
//PHP 関数自体は一連のマクロであり、文字列変換と戻り値変換を実行し、メイン関数は上記の 2 つの関数によって実行されます。
PHP_FUNCTION(類似テキスト)
{
zval **t1、**t2、**パーセント;
int ac = ZEND_NUM_ARGS();
内部SIM;
if (ac < 2 || ac > 3 || zend_get_parameters_ex(ac, &t1, &t2, &percent) == FAILURE) {
WRONG_PARAM_COUNT;
Convert_to_string_ex(t1)
;
Convert_to_string_ex(t2);
if (ac > 2) {
Convert_to_double_ex(パーセント);
}
if (Z_STRLEN_PP(t1) + Z_STRLEN_PP(t2) == 0) {
if (ac > 2) {
Z_DVAL_PP(パーセント) = 0;
RETURN_LONG(0)
;
}
sim = php_similar_char(Z_STRVAL_PP(t1), Z_STRLEN_PP(t1), Z_STRVAL_PP(t2), Z_STRLEN_PP(t2));
if (ac > 2) {
Z_DVAL_PP(パーセント) = sim * 200.0 / (Z_STRLEN_PP(t1) + Z_STRLEN_PP(t2));
RETURN_LONG(シム)
;
}
類似テキストは ASCII に基づいて比較されており、フレーズの問題は考慮されていないことがわかります。
テストした結果は次のとおりです:
int main(int argc, char *argv[])
{
char *str1="ウェイカンウーシン";
char *str2="無鑫微乾";
int pos1,pos2,max;
php_similar_str(str1,strlen(str1),str2,strlen(str2),&pos1,&pos2,&max);
printf("php_similar_str:%d,%d=%dn",pos1,pos2,max);
max=php_similar_char(str1,strlen(str1),str2,strlen(str2));
printf("php_similar_char:%dn",max);
システム("一時停止");
0を返します。
php_similar_str
:0,6=6
php_similar_char:6
char *str1="TCP プロトコル通信の動作原理 a";
char *str2="TCPa プロトコル通信の動作原理"
;
php_similar_char:19