mirror of
https://github.com/crazy-max/diun.git
synced 2025-04-28 20:52:25 +00:00
![dependabot[bot]](/assets/img/avatar_default.png)
Bumps [github.com/alecthomas/kong](https://github.com/alecthomas/kong) from 0.9.0 to 1.6.0. - [Commits](https://github.com/alecthomas/kong/compare/v0.9.0...v1.6.0) --- updated-dependencies: - dependency-name: github.com/alecthomas/kong dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
39 lines
799 B
Go
39 lines
799 B
Go
package kong
|
|
|
|
import "unicode/utf8"
|
|
|
|
// https://en.wikibooks.org/wiki/Algorithm_Implementation/Strings/Levenshtein_distance#Go
|
|
// License: https://creativecommons.org/licenses/by-sa/3.0/
|
|
func levenshtein(a, b string) int {
|
|
f := make([]int, utf8.RuneCountInString(b)+1)
|
|
|
|
for j := range f {
|
|
f[j] = j
|
|
}
|
|
|
|
for _, ca := range a {
|
|
j := 1
|
|
fj1 := f[0] // fj1 is the value of f[j - 1] in last iteration
|
|
f[0]++
|
|
for _, cb := range b {
|
|
mn := min(f[j]+1, f[j-1]+1) // delete & insert
|
|
if cb != ca {
|
|
mn = min(mn, fj1+1) // change
|
|
} else {
|
|
mn = min(mn, fj1) // matched
|
|
}
|
|
|
|
fj1, f[j] = f[j], mn // save f[j] to fj1(j is about to increase), update f[j] to mn
|
|
j++
|
|
}
|
|
}
|
|
|
|
return f[len(f)-1]
|
|
}
|
|
|
|
func min(a, b int) int { //nolint:predeclared
|
|
if a <= b {
|
|
return a
|
|
}
|
|
return b
|
|
}
|