| 25 | } |
| 26 | |
| 27 | type Tree struct { |
| 28 | numbersVertex int |
| 29 | root int |
| 30 | MAXLOG int |
| 31 | depth []int |
| 32 | dad []int |
| 33 | jump [][]int |
| 34 | edges [][]int |
| 35 | } |
| 36 | |
| 37 | func (tree *Tree) addEdge(u, v int) { |
| 38 | tree.edges[u] = append(tree.edges[u], v) |
nothing calls this directly
no outgoing calls
no test coverage detected