[LeetCode 문제 풀이] 72. 거리 편집 (Java)
13980 단어 LeetCode
Given two words word1 and word2, find the minimum number of operations required to convert word1 to word2.
You have the following 3 operations permitted on a word:
Insert a character Delete a character Replace a character Example 1:
Input: word1 = "horse", word2 = "ros"
Output: 3
Explanation:
horse -> rorse (replace 'h' with 'r')
rorse -> rose (remove 'r')
rose -> ros (remove 'e')
Example 2:
Input: word1 = "intention", word2 = "execution"
Output: 5
Explanation:
intention -> inention (remove 't')
inention -> enention (replace 'i' with 'e')
enention -> exention (replace 'n' with 'x')
exention -> exection (replace 'n' with 'c')
exection -> execution (insert 'u')
참고:https://leetcode.com/problems/edit-distance/discuss/25849/Java-DP-solution-O(nm)
package DynamicProgramming.EditDistance;
public class Solution {
public static int minDistance(String word1, String word2) {
int len1 = word1.length();
int len2 = word2.length();
int[][] cost = new int[len1+1][len2+1];
for(int i=1; i <= len1; i++){ //
cost[i][0] = i;
}
for(int i=1; i <= len2; i++){ //
cost[0][i] = i;
}
for(int i=1; i <= len1; i++){
for(int j=1; j <= len2; j++){
if(word1.charAt(i-1) == word2.charAt(j-1)){
cost[i][j] = cost[i-1][j-1];
} else{
cost[i][j] = findMin(cost[i-1][j-1],cost[i-1][j],cost[i][j-1]);
cost[i][j] += 1;
}
}
}
return cost[len1][len2];
}
public static int findMin(int a, int b, int c){ //
int min = a < b ? a : b;
min = min < c ? min : c;
return min;
}
public static void main(String[] args){
String word1 = "horse";
String word2 = "ros";
System.out.println(minDistance(word1,word2));
}
}
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
python 문자열 입력으로 모든 유효한 IP 주소 생성(LeetCode 93번 문제)이 문제의 공식 난이도는 Medium으로 좋아요 1296, 반대 505, 통과율 35.4%를 눌렀다.각 항목의 지표로 말하자면 보기에는 약간 규범에 맞는 것 같지만, 실제로도 확실히 그렇다.이 문제의 해법과 의도는 ...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.