LeetCode One Edit Distance

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了LeetCode One Edit Distance相关的知识,希望对你有一定的参考价值。

原题链接在这里:https://leetcode.com/problems/one-edit-distance/

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

Edit Distance类似。

若是长度相差大于1, return false. 若是长度相差等于1, 遇到不同char时, 长的那个向后挪一位. 若是长度相等, 遇到不同char时同时向后挪一位.

出了loop还没有返回,就是到目前为止都相同,那么看长度差是不是等于1. 这里等于0表示完全相同也不可以.

Time Complexity: O(Math.min(len1, len2)). Space: O(1).

AC Java:

 1 public class Solution {
 2     public boolean isOneEditDistance(String s, String t) {
 3         if(s == null || t == null){
 4             return false;
 5         }
 6         int len1 = s.length();
 7         int len2 = t.length();
 8         for(int i = 0; i < Math.min(len1, len2); i++){
 9             if(s.charAt(i) != t.charAt(i)){
10                 if(len1 == len2){
11                     return s.substring(i+1).equals(t.substring(i+1));
12                 }else if(len1 > len2){
13                     return s.substring(i+1).equals(t.substring(i));
14                 }else{
15                     return s.substring(i).equals(t.substring(i+1));
16                 }
17             }
18         }
19         return Math.abs(len1-len2) == 1;
20     }
21 }

 

以上是关于LeetCode One Edit Distance的主要内容,如果未能解决你的问题,请参考以下文章

Leetcode 161: One Edit Distance

LeetCode161. One Edit Distance

[LeetCode] One Edit Distance 一个编辑距离

LeetCode161. One Edit Distance

leetcode 161. One Edit Distance 判断两个字符串是否是一步变换 --------- java

(分类讨论, 情景模拟) lintcode 640. One Edit Distance, leetcode 388,intcode 645. 13. 12. 659. 660