我在我的程序中导入了数学库,我试图通过以下方式找到三个数字中的最小值:
v1[j+1] = math.Min(v1[j]+1, math.Min(v0[j+1]+1, v0[j]+cost))
其中 v1 声明为:
t := "stackoverflow"
v1 := make([]int, len(t)+1)
但是,当我运行我的程序时,出现以下错误:
./levenshtein_distance.go:36: cannot use int(v0[j + 1] + 1) (type int) as type float64 in argument to math.Min
我觉得这很奇怪,因为我有另一个程序可以编写
fmt.Println(math.Min(2,3))
并且该程序输出2没有抱怨。
所以我最终将值转换为 float64,以便math.Min可以工作:
v1[j+1] = math.Min(float64(v1[j]+1), math.Min(float64(v0[j+1]+1), float64(v0[j]+cost)))
使用这种方法,我收到以下错误:
./levenshtein_distance.go:36: cannot use math.Min(int(v1[j] + 1), math.Min(int(v0[j + 1] + 1), int(v0[j] + cost))) (type float64) as type int in assignment
所以为了摆脱这个问题,我只是将结果投回 int
我认为这是非常低效且难以阅读的:
v1[j+1] = int(math.Min(float64(v1[j]+1), math.Min(float64(v0[j+1]+1), float64(v0[j]+cost))))
我还写了一个小minInt函数,但我认为这应该是不必要的,因为其他程序math.Min在取整数时可以很好地利用工作,所以我得出结论,这一定是我的程序的问题,而不是库本身的问题。
有什么我做错了吗?
这是一个程序,您可以使用它来重现上述问题,特别是第 36 行:package main
import (
"math"
)
func main() {
LevenshteinDistance("stackoverflow", "stackexchange")
}
func LevenshteinDistance(s string, t string) int {
if s == t {
return 0
}
if len(s) == 0 {
return len(t)
}
if len(t) == 0 {
return len(s)
}
v0 := make([]int, len(t)+1)
v1 := make([]int, len(t)+1)
for i := 0; i < len(v0); i++ {
v0[i] = i
}
for i := 0; i < len(s); i++ {
v1[0] = i + 1
for j := 0; j < len(t); j++ {
cost := 0
if s[i] != t[j] {
cost = 1
}
v1[j+1] = int(math.Min(float64(v1[j]+1), math.Min(float64(v0[j+1]+1), float64(v0[j]+cost))))
}
for j := 0; j < len(v0); j++ {
v0[j] = v1[j]
}
}
return v1[len(t)]
}
qq_笑_17
鸿蒙传说
慕妹3146593
相关分类