diff --git a/cutTheTree/main.go b/cutTheTree/main.go index 73ce571..d0ffde6 100644 --- a/cutTheTree/main.go +++ b/cutTheTree/main.go @@ -20,6 +20,14 @@ func (root Node) WeighingTreeWithRecursion() map[string]uint16 { return res } +func (root Node) WeighingTreeIdiomaticDFS() map[string]uint16 { + return nil +} + +func (root Node) WeighingTreeIdiomaticBFS() map[string]uint16 { + return nil +} + func (root Node) DecomposeTree(weights map[string]uint16, limit int) ([]*Node, error) { return nil, nil diff --git a/cutTheTree/main_bench_test.go b/cutTheTree/main_bench_test.go new file mode 100644 index 0000000..531a6cf --- /dev/null +++ b/cutTheTree/main_bench_test.go @@ -0,0 +1,15 @@ +package cut_the_tree_test + +import ( + "testing" + + "github.com/stretchr/testify/assert" +) + +func BenchmarkNode_WeighingTreeWithRecursion(b *testing.B) { + for i := 0; i < b.N; i++ { + output := map[string]uint16{"node0":1416, "node01":194, "node011":49, "node012":49, "node013":49, "node02":194, "node021":49, "node022":49, "node023":49, "node03":983,"node031":361, "node0311":210, "node03111":53, "node03112":53, "node03113":53, "node0312":51, "node0313":51, "node032":49, "node033":526, "node0331":51, "node0332":375, "node03321":53, "node03322":53, "node03323":218, "node033231":55, "node033232":55, "node033233":55, "node0333":51} + + assert.EqualValues(b, output, testOrdinaryVFS.WeighingTreeWithRecursion()) + } +} diff --git a/cutTheTree/main_test.go b/cutTheTree/main_test.go index bd5dc0a..b0cad1a 100644 --- a/cutTheTree/main_test.go +++ b/cutTheTree/main_test.go @@ -8,7 +8,7 @@ import ( ) -func TestNode_WeighingTreeWithRecursion(t *testing.T) { +func TestNode_WeighingTreeAllAlgo(t *testing.T) { for name,tt := range map[string]struct{ input cut_the_tree.Node output map[string]uint16 @@ -23,8 +23,9 @@ func TestNode_WeighingTreeWithRecursion(t *testing.T) { }, }{ t.Run(name,func(t *testing.T) { - out := tt.input.WeighingTreeWithRecursion() - assert.EqualValues(t, tt.output, out) + assert.EqualValues(t, tt.output, tt.input.WeighingTreeWithRecursion()) + assert.EqualValues(t, tt.output, tt.input.WeighingTreeIdiomaticDFS()) + assert.EqualValues(t, tt.output, tt.input.WeighingTreeIdiomaticBFS()) }) } }