Computer >> 컴퓨터 >  >> 프로그램 작성 >> C++

Levenshtein 거리 계산 알고리즘을 구현하는 C++ 프로그램

<시간/>

두 문자열 사이의 Levenshtein 거리는 편집 작업 즉, 한 문자열을 다른 문자열로 변환하는 데 필요한 최소 편집 횟수를 의미합니다. 단일 문자의 삽입, 삭제 또는 대체.

예: Levenshtein 고양이와 매트 사이의 거리는 1 −

cat mat(substitution of ‘c’ with ‘m’)

다음은 Levenshtein 거리 계산 알고리즘을 구현하는 C++ 프로그램입니다.

알고리즘

Begin
   Take the strings as input and also find their length.
   For i = 0 to l1
      dist[0][i] = i
   For j = 0 to l2
      dist[j][0] = j
   For j=1 to l1
      For i=1 to l2
         if(s1[i-1] == s2[j-1])
            track= 0
         else
            track = 1
         done
         t = MIN((dist[i-1][j]+1),(dist[i][j-1]+1))
         dist[i][j] = MIN(t,(dist[i-1][j-1]+track))
      Done
   Done
   Print the Levinstein distance: dist[l2][l1]
End

예시

#include <iostream>
#include <math.h>
#include <string.h>
using namespace std;
#define MIN(x,y) ((x) < (y) ? (x) : (y)) //calculate minimum between two values
int main() {
   int i,j,l1,l2,t,track;
   int dist[50][50];
   //take the strings as input
   char s1[] = "tutorials";
   char s2[] = "point";
   //stores the lenght of strings s1 and s2
   l1 = strlen(s1);
   l2= strlen(s2);
   for(i=0;i<=l1;i++) {
      dist[0][i] = i;
   }
   for(j=0;j<=l2;j++) {
      dist[j][0] = j;
   }
   for (j=1;j<=l1;j++) {
      for(i=1;i<=l2;i++) {
         if(s1[i-1] == s2[j-1]) {
            track= 0;
         } else {
            track = 1;
         }
         t = MIN((dist[i-1][j]+1),(dist[i][j-1]+1));
         dist[i][j] = MIN(t,(dist[i-1][j-1]+track));
      }
   }
   cout<<"The Levinstein distance is:"<<dist[l2][l1];
   return 0;
}

출력

The Levinstein distance is:8