Here you can find the source of distance(String a, String b)
private static int distance(String a, String b)
//package com.java2s; //License from project: Open Source License public class Main { private static int distance(String a, String b) { a = a.toLowerCase();// ww w . j av a 2s . com a = a.replaceAll("[^a-zA-Z0-9]", ""); b = b.toLowerCase(); b = b.replaceAll("[^a-zA-Z0-9]", ""); // i == 0 int[] costs = new int[b.length() + 1]; for (int j = 0; j < costs.length; j++) { costs[j] = j; } for (int i = 1; i <= a.length(); i++) { // j == 0; nw = lev(i - 1, j) costs[0] = i; int nw = i - 1; for (int j = 1; j <= b.length(); j++) { int cj = Math.min(1 + Math.min(costs[j], costs[j - 1]), a.charAt(i - 1) == b.charAt(j - 1) ? nw : nw + 1); nw = costs[j]; costs[j] = cj; } } return costs[b.length()]; } }