58 lines
1.5 KiB
Go
58 lines
1.5 KiB
Go
// File: climbing_stairs_test.go
|
|
// Created Time: 2023-07-18
|
|
// Author: Reanon (793584285@qq.com)
|
|
|
|
package chapter_dynamic_programming
|
|
|
|
import (
|
|
"fmt"
|
|
"testing"
|
|
)
|
|
|
|
func TestClimbingStairsBacktrack(t *testing.T) {
|
|
n := 9
|
|
res := climbingStairsBacktrack(n)
|
|
fmt.Printf("Climbing %d stairs has %d possible solutions\n", n, res)
|
|
}
|
|
|
|
func TestClimbingStairsDFS(t *testing.T) {
|
|
n := 9
|
|
res := climbingStairsDFS(n)
|
|
fmt.Printf("Climbing %d stairs has %d possible solutions\n", n, res)
|
|
}
|
|
|
|
func TestClimbingStairsDFSMem(t *testing.T) {
|
|
n := 9
|
|
res := climbingStairsDFSMem(n)
|
|
fmt.Printf("Climbing %d stairs has %d possible solutions\n", n, res)
|
|
}
|
|
|
|
func TestClimbingStairsDP(t *testing.T) {
|
|
n := 9
|
|
res := climbingStairsDP(n)
|
|
fmt.Printf("Climbing %d stairs has %d possible solutions\n", n, res)
|
|
}
|
|
|
|
func TestClimbingStairsDPComp(t *testing.T) {
|
|
n := 9
|
|
res := climbingStairsDPComp(n)
|
|
fmt.Printf("Climbing %d stairs has %d possible solutions\n", n, res)
|
|
}
|
|
|
|
func TestClimbingStairsConstraintDP(t *testing.T) {
|
|
n := 9
|
|
res := climbingStairsConstraintDP(n)
|
|
fmt.Printf("Climbing %d stairs has %d possible solutions\n", n, res)
|
|
}
|
|
|
|
func TestMinCostClimbingStairsDPComp(t *testing.T) {
|
|
cost := []int{0, 1, 10, 1, 1, 1, 10, 1, 1, 10, 1}
|
|
fmt.Printf("The cost list for climbing the stairs is %v\n", cost)
|
|
|
|
res := minCostClimbingStairsDP(cost)
|
|
fmt.Printf("Minimum cost to climb the stairs = %d\n", res)
|
|
|
|
res = minCostClimbingStairsDPComp(cost)
|
|
fmt.Printf("Minimum cost to climb the stairs = %d\n", res)
|
|
}
|