You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
506 B
24 lines
506 B
// File: coin_change_test.go
|
|
// Created Time: 2023-07-23
|
|
// Author: Reanon (793584285@qq.com)
|
|
|
|
package chapter_dynamic_programming
|
|
|
|
import (
|
|
"fmt"
|
|
"testing"
|
|
)
|
|
|
|
func TestCoinChange(t *testing.T) {
|
|
coins := []int{1, 2, 5}
|
|
amt := 4
|
|
|
|
// 动态规划
|
|
res := coinChangeDP(coins, amt)
|
|
fmt.Printf("凑到目标金额所需的最少硬币数量为 %d\n", res)
|
|
|
|
// 空间优化后的动态规划
|
|
res = coinChangeDPComp(coins, amt)
|
|
fmt.Printf("凑到目标金额所需的最少硬币数量为 %d\n", res)
|
|
}
|