mirror of
https://github.com/krahets/hello-algo.git
synced 2024-12-26 21:46:29 +08:00
23 lines
464 B
Go
23 lines
464 B
Go
// File: recursion_test.go
|
|
// Created Time: 2023-08-28
|
|
// Author: Reanon (793584285@qq.com)
|
|
|
|
package chapter_computational_complexity
|
|
|
|
import (
|
|
"fmt"
|
|
"testing"
|
|
)
|
|
|
|
/* Driver Code */
|
|
func TestRecursion(t *testing.T) {
|
|
n := 5
|
|
res := recur(n)
|
|
fmt.Println("\n递归函数的求和结果 res = ", res)
|
|
|
|
res = tailRecur(n, 0)
|
|
fmt.Println("\n尾递归函数的求和结果 res = ", res)
|
|
|
|
res = fib(n)
|
|
fmt.Println("\n斐波那契数列的第", n, "项为", res)
|
|
}
|