mirror of
https://github.com/krahets/hello-algo.git
synced 2026-02-04 11:23:55 +08:00
* Review the EN heading format. * Fix pythontutor headings. * Fix pythontutor headings. * bug fixes * Fix headings in **/summary.md * Revisit the CN-to-EN translation for Python code using Claude-4.5 * Revisit the CN-to-EN translation for Java code using Claude-4.5 * Revisit the CN-to-EN translation for Cpp code using Claude-4.5. * Fix the dictionary. * Fix cpp code translation for the multipart strings. * Translate Go code to English. * Update workflows to test EN code. * Add EN translation for C. * Add EN translation for CSharp. * Add EN translation for Swift. * Trigger the CI check. * Revert. * Update en/hash_map.md * Add the EN version of Dart code. * Add the EN version of Kotlin code. * Add missing code files. * Add the EN version of JavaScript code. * Add the EN version of TypeScript code. * Fix the workflows. * Add the EN version of Ruby code. * Add the EN version of Rust code. * Update the CI check for the English version code. * Update Python CI check. * Fix cmakelists for en/C code. * Fix Ruby comments
140 lines
5.2 KiB
Java
140 lines
5.2 KiB
Java
/**
|
|
* File: edit_distance.java
|
|
* Created Time: 2023-07-13
|
|
* Author: krahets (krahets@163.com)
|
|
*/
|
|
|
|
package chapter_dynamic_programming;
|
|
|
|
import java.util.Arrays;
|
|
|
|
public class edit_distance {
|
|
/* Edit distance: Brute-force search */
|
|
static int editDistanceDFS(String s, String t, int i, int j) {
|
|
// If both s and t are empty, return 0
|
|
if (i == 0 && j == 0)
|
|
return 0;
|
|
// If s is empty, return length of t
|
|
if (i == 0)
|
|
return j;
|
|
// If t is empty, return length of s
|
|
if (j == 0)
|
|
return i;
|
|
// If two characters are equal, skip both characters
|
|
if (s.charAt(i - 1) == t.charAt(j - 1))
|
|
return editDistanceDFS(s, t, i - 1, j - 1);
|
|
// Minimum edit steps = minimum edit steps of insert, delete, replace + 1
|
|
int insert = editDistanceDFS(s, t, i, j - 1);
|
|
int delete = editDistanceDFS(s, t, i - 1, j);
|
|
int replace = editDistanceDFS(s, t, i - 1, j - 1);
|
|
// Return minimum edit steps
|
|
return Math.min(Math.min(insert, delete), replace) + 1;
|
|
}
|
|
|
|
/* Edit distance: Memoization search */
|
|
static int editDistanceDFSMem(String s, String t, int[][] mem, int i, int j) {
|
|
// If both s and t are empty, return 0
|
|
if (i == 0 && j == 0)
|
|
return 0;
|
|
// If s is empty, return length of t
|
|
if (i == 0)
|
|
return j;
|
|
// If t is empty, return length of s
|
|
if (j == 0)
|
|
return i;
|
|
// If there's a record, return it directly
|
|
if (mem[i][j] != -1)
|
|
return mem[i][j];
|
|
// If two characters are equal, skip both characters
|
|
if (s.charAt(i - 1) == t.charAt(j - 1))
|
|
return editDistanceDFSMem(s, t, mem, i - 1, j - 1);
|
|
// Minimum edit steps = minimum edit steps of insert, delete, replace + 1
|
|
int insert = editDistanceDFSMem(s, t, mem, i, j - 1);
|
|
int delete = editDistanceDFSMem(s, t, mem, i - 1, j);
|
|
int replace = editDistanceDFSMem(s, t, mem, i - 1, j - 1);
|
|
// Record and return minimum edit steps
|
|
mem[i][j] = Math.min(Math.min(insert, delete), replace) + 1;
|
|
return mem[i][j];
|
|
}
|
|
|
|
/* Edit distance: Dynamic programming */
|
|
static int editDistanceDP(String s, String t) {
|
|
int n = s.length(), m = t.length();
|
|
int[][] dp = new int[n + 1][m + 1];
|
|
// State transition: first row and first column
|
|
for (int i = 1; i <= n; i++) {
|
|
dp[i][0] = i;
|
|
}
|
|
for (int j = 1; j <= m; j++) {
|
|
dp[0][j] = j;
|
|
}
|
|
// State transition: rest of the rows and columns
|
|
for (int i = 1; i <= n; i++) {
|
|
for (int j = 1; j <= m; j++) {
|
|
if (s.charAt(i - 1) == t.charAt(j - 1)) {
|
|
// If two characters are equal, skip both characters
|
|
dp[i][j] = dp[i - 1][j - 1];
|
|
} else {
|
|
// Minimum edit steps = minimum edit steps of insert, delete, replace + 1
|
|
dp[i][j] = Math.min(Math.min(dp[i][j - 1], dp[i - 1][j]), dp[i - 1][j - 1]) + 1;
|
|
}
|
|
}
|
|
}
|
|
return dp[n][m];
|
|
}
|
|
|
|
/* Edit distance: Space-optimized dynamic programming */
|
|
static int editDistanceDPComp(String s, String t) {
|
|
int n = s.length(), m = t.length();
|
|
int[] dp = new int[m + 1];
|
|
// State transition: first row
|
|
for (int j = 1; j <= m; j++) {
|
|
dp[j] = j;
|
|
}
|
|
// State transition: rest of the rows
|
|
for (int i = 1; i <= n; i++) {
|
|
// State transition: first column
|
|
int leftup = dp[0]; // Temporarily store dp[i-1, j-1]
|
|
dp[0] = i;
|
|
// State transition: rest of the columns
|
|
for (int j = 1; j <= m; j++) {
|
|
int temp = dp[j];
|
|
if (s.charAt(i - 1) == t.charAt(j - 1)) {
|
|
// If two characters are equal, skip both characters
|
|
dp[j] = leftup;
|
|
} else {
|
|
// Minimum edit steps = minimum edit steps of insert, delete, replace + 1
|
|
dp[j] = Math.min(Math.min(dp[j - 1], dp[j]), leftup) + 1;
|
|
}
|
|
leftup = temp; // Update for next round's dp[i-1, j-1]
|
|
}
|
|
}
|
|
return dp[m];
|
|
}
|
|
|
|
public static void main(String[] args) {
|
|
String s = "bag";
|
|
String t = "pack";
|
|
int n = s.length(), m = t.length();
|
|
|
|
// Brute-force search
|
|
int res = editDistanceDFS(s, t, n, m);
|
|
System.out.println("Changing " + s + " to " + t + " requires a minimum of " + res + " edits");
|
|
|
|
// Memoization search
|
|
int[][] mem = new int[n + 1][m + 1];
|
|
for (int[] row : mem)
|
|
Arrays.fill(row, -1);
|
|
res = editDistanceDFSMem(s, t, mem, n, m);
|
|
System.out.println("Changing " + s + " to " + t + " requires a minimum of " + res + " edits");
|
|
|
|
// Dynamic programming
|
|
res = editDistanceDP(s, t);
|
|
System.out.println("Changing " + s + " to " + t + " requires a minimum of " + res + " edits");
|
|
|
|
// Space-optimized dynamic programming
|
|
res = editDistanceDPComp(s, t);
|
|
System.out.println("Changing " + s + " to " + t + " requires a minimum of " + res + " edits");
|
|
}
|
|
}
|