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.
27 lines
454 B
27 lines
454 B
7 months ago
|
// File: space_complexity_test.go
|
||
|
// Created Time: 2022-12-15
|
||
|
// Author: cathay (cathaycchen@gmail.com)
|
||
|
|
||
|
package chapter_computational_complexity
|
||
|
|
||
|
import (
|
||
|
"testing"
|
||
|
|
||
|
. "github.com/krahets/hello-algo/pkg"
|
||
|
)
|
||
|
|
||
|
func TestSpaceComplexity(t *testing.T) {
|
||
|
n := 5
|
||
|
// 常數階
|
||
|
spaceConstant(n)
|
||
|
// 線性階
|
||
|
spaceLinear(n)
|
||
|
spaceLinearRecur(n)
|
||
|
// 平方階
|
||
|
spaceQuadratic(n)
|
||
|
spaceQuadraticRecur(n)
|
||
|
// 指數階
|
||
|
root := buildTree(n)
|
||
|
PrintTree(root)
|
||
|
}
|