Fix stack algo
continuous-integration/drone/push Build is failing
Details
continuous-integration/drone/push Build is failing
Details
parent
685eeec2aa
commit
5fa2cd8bb3
|
@ -85,26 +85,26 @@ func (root *Node) WeightingTreeWithDLL(parent *Node) map[string]*WeightedNode {
|
|||
weight: weight,
|
||||
}}
|
||||
dllist := dll.NewList()
|
||||
dllist.PushFront(root)
|
||||
dllist.PushFront(*root)
|
||||
|
||||
for dllist.Len() > 0 {
|
||||
current := dllist.Front()
|
||||
dllist.Remove(current)
|
||||
|
||||
nodeWeight := current.Value.(*Node).getNodeWeight()
|
||||
counter[current.Value.(Node).ID].weight = nodeWeight
|
||||
counter[current.Value.(*Node).ID].weight = nodeWeight
|
||||
// Прибавляем вес всем родительским нодам до корня
|
||||
parentNode := counter[current.Value.(Node).ID].parent
|
||||
parentNode := counter[current.Value.(*Node).ID].parent
|
||||
for {
|
||||
currentNode := counter[parentNode.ID]
|
||||
if parentNode == nil {
|
||||
break
|
||||
}
|
||||
currentNode := counter[parentNode.ID]
|
||||
currentNode.weight = currentNode.weight + nodeWeight
|
||||
parentNode = currentNode.parent
|
||||
}
|
||||
|
||||
for _, child := range current.Value.(Node).Children {
|
||||
for _, child := range current.Value.(*Node).Children {
|
||||
counter[child.ID] = &WeightedNode{
|
||||
parent: current.Value.(*Node),
|
||||
}
|
||||
|
|
|
@ -24,11 +24,11 @@ func TestNode_WeighingTreeAllAlgo(t *testing.T) {
|
|||
printExpectations(tt.Weights, weightTreeWithStack)
|
||||
assert.EqualValues(t, tt.Weights, weightTreeWithStack)
|
||||
})
|
||||
//t.Run("WeightingTreeWithDLL", func(t *testing.T) {
|
||||
// weightTreeWithDLL := tt.Tree.WeightingTreeWithDLL(nil)
|
||||
// printExpectations(tt.Weights, weightTreeWithDLL)
|
||||
// assert.EqualValues(t, tt.Weights, weightTreeWithDLL)
|
||||
//})
|
||||
t.Run("WeightingTreeWithDLL", func(t *testing.T) {
|
||||
weightTreeWithDLL := tt.Tree.WeightingTreeWithDLL(nil)
|
||||
printExpectations(tt.Weights, weightTreeWithDLL)
|
||||
assert.EqualValues(t, tt.Weights, weightTreeWithDLL)
|
||||
})
|
||||
})
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue