问题描述

Levenshtein Distance也称莱文斯坦距离

具体形式就是求一个字符串到另一个字符串所需要的最少操作步数,操作形式有:

  • 替换字母
  • 删除字母
  • 插入字母

    问题分析

    利用动态规划思想,将其剖析为一个个子问题,用其子问题的解决方式来解决该问题。问题分解出来的子问题存在重叠的情况,这是区分分治算法的不同。
    image.png

莱文斯坦的公式化表述为:
image.png

下面利用表格的形式来步步推出该字母所需要达到相应的目标字母序列的步数。


s o n

0 1 2 3
s 1 0 1 2
u 2 1 1 2
n 3 2 2 1

记横(son)为i字符串序列,纵(sun)为j字符串序列。需要完成的字符串变换为i->j。现举例格子数值该怎么填:

当到了第三行第三列的那一格,需要完成s->s,有三种情况可以选择

  1. 左操作(i-1,j):删除s字符然后插入s字符===操作步数两步
  2. 上操作(i,j-1):插入s字符然后删除s字符===操作步数两步
  3. 左上操作(i-1,j-1):替换步骤,因为这个元素相同,故===操作步数零部

然后选取上述三种情况最短步数的数值0

然后再看第三行第四列,需要完成so->s,

  1. 左操作:删除o===一步
  2. 上操作:插入s删除so===三步
  3. 做上操作:替换s删除o===两步

综上应该填1

其他格子也一样以上述方法填写。

有个作业遗留问题,在CAAIS里面每个得出的值右上标的 U L 0 1 这些的依次顺序是怎么个顺序?
image.png

代码实现

  1. #include <string>
  2. #include <vector>
  3. #include <algorithm>
  4. #include<iostream>
  5. #include<ctime>
  6. const int LEN_NAME=100;
  7. namespace NS_LSEditDist {
  8. using namespace std;
  9. void Initialization(const string &x, const string &y);
  10. int GetLSEditDist(const string &x, const string &y);
  11. void GetLSEdits(const string &x, const string &y);
  12. void Output(const string &x, const string &y, int OptD);
  13. void OutputE(const string &x, const string &y);
  14. void OutputP(const string &x, const string &y);
  15. static int m, n;
  16. static vector<vector<int>> E;
  17. static vector<vector<char>> P;
  18. static string xe, ye;
  19. void LSEditDistCaller(const string &x, const string &y)
  20. {
  21. Initialization(x, y);
  22. int OptD = GetLSEditDist(x, y);
  23. GetLSEdits(x, y);
  24. Output(x, y, OptD);
  25. }
  26. int GetLSEditDist(const string &x, const string &y)
  27. {
  28. for (int i = 1; i <= m; i++)
  29. for (int j = 1; j <= n; j++)
  30. {
  31. E[i][j] = min(E[i - 1][j] + 1,
  32. min(E[i][j - 1] + 1,
  33. E[i - 1][j - 1] + (x[i - 1] != y[j - 1])));
  34. if (E[i][j] == E[i - 1][j] + 1)
  35. P[i][j] = 'U';
  36. else if (E[i][j] == E[i][j - 1] + 1)
  37. P[i][j] = 'L';
  38. else if (x[i - 1] != y[j - 1])
  39. P[i][j] = '1';
  40. }
  41. return E[m][n];
  42. }
  43. void GetLSEdits(const string &x, const string &y)
  44. {
  45. int i = m, j = n;
  46. while (i > 0 || j > 0)
  47. {
  48. if (P[i][j] == '0' || P[i][j] == '1')
  49. {
  50. xe.insert(0, 1, x[i - 1]);
  51. ye.insert(0, 1, y[j - 1]);
  52. i--; j--;
  53. }
  54. else if (P[i][j] == 'U')
  55. {
  56. xe.insert(xe.begin(), x[i - 1]);
  57. ye.insert(ye.begin(), '-');
  58. i--;
  59. }
  60. else
  61. {
  62. xe.insert(xe.begin(), '-');
  63. ye.insert(ye.begin(), y[j - 1]);
  64. j--;
  65. }
  66. }
  67. }
  68. void Initialization(const string &x, const string &y)
  69. {
  70. m = x.length();
  71. n = y.length();
  72. E.clear();
  73. E.resize(m + 1, vector<int>(n + 1, 0));
  74. P.clear();
  75. P.resize(m + 1, vector<char>(n + 1, '0'));
  76. for (int j = 1; j <= n; j++)
  77. {
  78. E[0][j] = j;
  79. P[0][j] = 'L';
  80. }
  81. for (int i = 1; i <= m; i++)
  82. {
  83. E[i][0] = i;
  84. P[i][0] = 'U';
  85. }
  86. xe.clear();
  87. ye.clear();
  88. }
  89. void Output(const string &x, const string &y, int OptD)
  90. {
  91. printf("Levenshtein distance: \n");
  92. printf("Strings: %s, %s\n\n", x.c_str(), y.c_str());
  93. OutputE(x, y);
  94. OutputP(x, y);
  95. printf("Distance: %d\n", OptD);
  96. printf("Edited strings:\n");
  97. for (auto c : xe)
  98. printf("%2c", c);
  99. printf("\n");
  100. for (auto c : ye)
  101. printf("%2c", c);
  102. printf("\n\n");
  103. }
  104. void OutputE(const string &x, const string &y)
  105. {
  106. printf(" E ");
  107. for (int j = 0; j < n; j++)
  108. printf("%2c", y[j]);
  109. printf("\n");
  110. for (int i = 0; i <= m; i++)
  111. {
  112. if (i == 0)
  113. printf(" ");
  114. else
  115. printf("%2c", x[i - 1]);
  116. for (int j = 0; j <= n; j++)
  117. {
  118. printf("%2d", E[i][j]);
  119. }
  120. printf("\n");
  121. }
  122. printf("\n");
  123. }
  124. void OutputP(const string &x, const string &y)
  125. {
  126. printf(" P ");
  127. for (int j = 0; j < n; j++)
  128. printf("%2c", y[j]);
  129. printf("\n");
  130. for (int i = 0; i <= m; i++)
  131. {
  132. if (i == 0)
  133. printf(" ");
  134. else
  135. printf("%2c", x[i - 1]);
  136. for (int j = 0; j <= n; j++)
  137. {
  138. printf("%2c", P[i][j]);
  139. }
  140. printf("\n");
  141. }
  142. printf("\n");
  143. }
  144. } //namespace NS_LSEditDist
  145. char *rand_str(char *str,const int len)
  146. {
  147. int i;
  148. for(i=0;i<len;++i)
  149. str[i]='a'+rand()%26;
  150. str[++i]='\0';
  151. return str;
  152. }
  153. using namespace NS_LSEditDist;
  154. int main()
  155. {
  156. vector<vector<string>> abs = {
  157. { "water", "wheat" },
  158. { "servant", "reveal" }
  159. };
  160. for (auto ab : abs)
  161. {
  162. string a = ab[0];
  163. string b = ab[1];
  164. LSEditDistCaller(a, b);
  165. }
  166. cout<<"两个100位字符串的LevenShtein距离:"<<endl;
  167. srand(time(NULL));
  168. int i;
  169. char name[LEN_NAME+1];
  170. string x = rand_str(name,LEN_NAME);
  171. string y = rand_str(name,LEN_NAME);
  172. cout<<"字符串1:"<<x<<endl;
  173. cout<<"字符串2:"<<y<<endl;
  174. LSEditDistCaller(x, y);
  175. }

参考资料