mirror of
https://github.com/krahets/hello-algo.git
synced 2026-04-05 11:41:22 +08:00
fix some typos (#1540)
This commit is contained in:
@@ -20,7 +20,7 @@ func TestMinPathSum(t *testing.T) {
|
||||
|
||||
// 暴力搜索
|
||||
res := minPathSumDFS(grid, n-1, m-1)
|
||||
fmt.Printf("从左上角到右下角的做小路径和为 %d\n", res)
|
||||
fmt.Printf("从左上角到右下角的最小路径和为 %d\n", res)
|
||||
|
||||
// 记忆化搜索
|
||||
mem := make([][]int, n)
|
||||
@@ -31,13 +31,13 @@ func TestMinPathSum(t *testing.T) {
|
||||
}
|
||||
}
|
||||
res = minPathSumDFSMem(grid, mem, n-1, m-1)
|
||||
fmt.Printf("从左上角到右下角的做小路径和为 %d\n", res)
|
||||
fmt.Printf("从左上角到右下角的最小路径和为 %d\n", res)
|
||||
|
||||
// 动态规划
|
||||
res = minPathSumDP(grid)
|
||||
fmt.Printf("从左上角到右下角的做小路径和为 %d\n", res)
|
||||
fmt.Printf("从左上角到右下角的最小路径和为 %d\n", res)
|
||||
|
||||
// 空间优化后的动态规划
|
||||
res = minPathSumDPComp(grid)
|
||||
fmt.Printf("从左上角到右下角的做小路径和为 %d\n", res)
|
||||
fmt.Printf("从左上角到右下角的最小路径和为 %d\n", res)
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user