zoukankan      html  css  js  c++  java
  • 161. One Edit Distance

    题目:

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

    链接: http://leetcode.com/problems/one-edit-distance/

    题解:

    求两个字符串是否只有1个Edit Distance。 看着这道题又想起了Edit Distance那道。不过这道题不需要用DP,只用设一个boolean变量hasEdited来逐字符判断就可以了。写法大都借鉴了曹神的代码。用短的string和长的比较,假如字符不同,则hasEdited为true,假如s比t短,则下标i退回1来继续比较insert / delete的case。否则比较的是replace。

    Time Complexity - O(n), Space Complexity - O(1)。

    public class Solution {
        public boolean isOneEditDistance(String s, String t) {  // compare short string with long string
            if(s == null || t == null)
                return false;
            if(s.length() > t.length())
                return isOneEditDistance(t, s);
            if(t.length() - s.length() > 1)
                return false;
            boolean hasEdited = false;
            
            for(int i = 0, j = 0; i < s.length(); i++, j++) {           // detect if only 1 change need to be made
                if(s.charAt(i) != t.charAt(j)) {
                    if(hasEdited)
                        return false;
                    hasEdited = true;
                    if(s.length() < t.length())                         //if s.length() < t.length(), back up one letter and continue compare
                        i--;
                }
            }
            
          return hasEdited || (s.length() < t.length());    // (s.length() < t.length()) for insert case or delete case
        }
    }

    Update:

    把s.equals(t)的相等判断从尾部挪到头部了,这样尾部直接return true就可以了

    public class Solution {
        public boolean isOneEditDistance(String s, String t) {
            if(s == null || t == null || s.equals(t)) 
                return false;
            if(s.length() > t.length())
                return isOneEditDistance(t, s);
            if(t.length() - s.length() > 1)
                return false;
            
            boolean hasEdited = false;
            
            for(int i = 0, j = 0; i < s.length(); i++, j++) {
                if(s.charAt(i) != t.charAt(j)) {
                    if(hasEdited)
                        return false;
                    hasEdited = true;
                    if(s.length() < t.length())
                        i--;
                }
            }
            
            return true;
        }
    }

    二刷:

    依然是曹神的解法。

    Java:

    Time Complexity - O(n), Space Complexity - O(1)。

    public class Solution {
        public boolean isOneEditDistance(String s, String t) {
            if (s == null || t == null || s.equals(t) || Math.abs(s.length() - t.length()) > 1) return false;
            if (s.length() > t.length()) return isOneEditDistance(t, s);
            boolean hasDiff = false;
            for (int i = 0, j = 0; i < s.length(); i++, j++) {
                if (s.charAt(i) != t.charAt(j)) {
                    if (hasDiff) return false;
                    hasDiff = true;
                    if (s.length() < t.length()) i--;
                }
            }
            return true;
        }
    }
  • 相关阅读:
    转载 分享探讨程序员的最后归宿!
    Java切换JDK版本时遇到的小错误。
    LR学习笔记16-LR脚本调试
    LR学习笔记15-LR的错误处理
    LR学习笔记14-脚本编写实践过程
    LR学习笔记13-Run-Time Settings设置
    LR学习笔记12-测试脚本的增强方法
    LR学习笔记11-LR自动关联
    LR学习笔记10-HTML和URL比较
    LR学习笔记9-回放测试脚本
  • 原文地址:https://www.cnblogs.com/yrbbest/p/4489717.html
Copyright © 2011-2022 走看看