[LeetCode] One Edit Distance

简介: Problem Description: Given two strings S and T, determine if they are both one edit distance apart.

Problem Description:

Given two strings S and T, determine if they are both one edit distance apart.

To solve this problem, you first need to know what is edit distance. You may refer to this wikipedia article for more information.

For this problem, it implicitly assumes to use the classic Levenshtein distance, which involvesinsertion, deletion and substitution operations and all of them are of the same cost. Thus, if Sis one edit distance apart from TT is automatically one edit distance apart from S.

Now let's think about the possible cases for two strings to be one edit distance apart. Well, that means, we can transform S to T by using exactly one edit operation. There are three possible cases:

  1. We insert a character into S to get T.
  2. We delete a character from S to get T.
  3. We substitute a character of S to get T.

For cases 1 and 2, S and T will be one apart in their lengths. For cases 3, they are of the same length.

It is relatively easy to handle case 3. We simply traverse both of them and compare the characters at the corresponding position. If we find exactly one mismatch during the traverse, they are one edit distance apart.

Now let's move on to cases 1 and 2. In fact, they can be merged into one case, that is, to delete a character from the long string to get the short one, or equivalently, to insert a character into the short string to get the long one.

We will handle cases 1 and 2 using the short string as the reference. We traverse the two strings, once we find a mismatch. We know this position is where the deletion in the long string happens. For example, suppose S = "kitten" and T = "kiten", we meet the first mismatch in the 4-th position, which corresponds to the deleted character below, shown in between *. We then continue to compare the remaining string of T (en) with the remaining string of S (en) and find them to be the same. So they are one edit distance apart.

S: k i t t e n

T: k i t *t* e n

In fact, cases 1, 2 and 3 can be further handled using the same piece of code. For strings of the same length, once we find a mismatch, we just substitute one to be another and check whether they are now the same. For strings of one apart in lengths, we insert the deleted character of the long string into the short one and compare whether they are the same.

The code is as follows. If you find the first half of the return statement (!mismatch && (n - m == 1)) hard to understand, run the code on cases that the mismatch only occurs at the last character of the long string, like S = "ab" and T = "abc".

 1 class Solution {
 2 public:
 3     bool isOneEditDistance(string s, string t) {
 4         int m = s.length(), n = t.length();
 5         if (m > n) return isOneEditDistance(t, s);
 6         if (n - m > 1) return false;
 7         bool mismatch = false;
 8         for (int i = 0, j = 0; i < m; i++, j++) {
 9             if (s[i] != t[j]) {
10                 if (m == n) s[i] = t[j];
11                 else s.insert(i, 1, t[j]);
12                 mismatch = true;
13                 break;
14             }
15         }
16         return (!mismatch && (n - m == 1)) || (mismatch && s == t);
17     }
18 };

 

目录
相关文章
|
5月前
Leetcode 623. Add One Row to Tree
题目很简单,在树的第d层加一层,值为v。递归增加一层就好了。代码如下
25 0
LeetCode Contest 178-1368. 使网格图至少有一条有效路径的最小代价 Minimum Cost to Make at Least One Valid Path in a Grid
LeetCode Contest 178-1368. 使网格图至少有一条有效路径的最小代价 Minimum Cost to Make at Least One Valid Path in a Grid
|
存储 算法
LeetCode 66. 加一 Plus One
LeetCode 66. 加一 Plus One
LeetCode 233. Number of Digit One
给定一个整数 n,计算所有小于等于 n 的非负整数中数字 1 出现的个数。
61 0
LeetCode 233. Number of Digit One
|
数据库 C语言
LeetCode 72. Edit Distance
给定两个单词word1和word2,找到将word1转换为word2所需的最小操作数。 您对单词允许以下3个操作: 插入一个字符 删除一个字符 替换一个字符
42 0
LeetCode 72. Edit Distance
|
存储 Python
LeetCode 66. Plus One
给定表示非负整数的非空数字数组,加上整数的1。 存储数字使得最高有效数字位于列表的开头,并且数组中的每个元素包含单个数字。 您可以假设整数不包含任何前导零,除了数字0本身。
67 0
LeetCode 66. Plus One
Leetcode-Easy 72. Edit Distance
Leetcode-Easy 72. Edit Distance
66 0
Leetcode-Easy 72. Edit Distance
LeetCode之Hamming Distance
LeetCode之Hamming Distance
98 0