/* * RapidMiner * * Copyright (C) 2001-2011 by Rapid-I and the contributors * * Complete list of developers available at our web site: * * http://rapid-i.com * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Affero General Public License for more details. * * You should have received a copy of the GNU Affero General Public License * along with this program. If not, see http://www.gnu.org/licenses/. */ package com.rapidminer.tools.math.similarity.nominal; /** * This calculates the levenshtein distance of two strings. This is not a valid distance measure. * * TODO: Extend this to become a valid distance measure * * @author Sebastian Land */ public class LevenshteinDistance { public static int getDistance(String value1, String value2, int substitutionCost) { byte[] s = value1.getBytes(); byte[] t = value2.getBytes(); int n = s.length + 1; int m = t.length + 1; int[][] d = new int[n][m]; for (int i = 0; i < n; i++) d[i][0] = i; for (int j = 0; j < m; j++) d[0][j] = j; for (int i = 1; i < n; i++) { for (int j = 1; j < m; j++) { int cost = (s[i - 1] == t[j - 1]) ? 0 : substitutionCost; d[i][j] = Math.min(Math.min(d[i-1][j] + 1, d[i][j - 1] + 1), d[i - 1][j - 1] + cost); } } return d[n - 1][m - 1]; } }