classSolution { public: boolisOneEditDistance(string s, string t){ /* discussed into two parts, same length or diff length 1. same length check if only one char is different 2. diff length check if w/o the first one different character, the remain is equal or not. Once thing to notice is that, we should use longer string to be the delete character one. */ int m= s.length(), n= t.length(); if(abs(m-n) > 1) returnfalse; if(s.length() == t.length()) return sizeEqual(s, t); if(s.length() > t.length()) return sizeDiff(s, t); elsereturn sizeDiff(t, s); } boolsizeDiff(string s, string t){ for(int i= 0, j= 0; i< s.length()&& j< t.length(); i++, j++){ if(s[i]!= t[j]){ return s.substr(i+1) == t.substr(j); } } returntrue; } boolsizeEqual(string s, string t){ int diff= 0; for(int i= 0; i< s.length(); i++){ if(s[i] != t[i]) diff++; } return diff==1; } };
time complexity: $O(n)$ space complexity: $O(1)$ reference: