trees

package
v1.1.11 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Nov 19, 2024 License: Apache-2.0 Imports: 3 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

func CalculateTreeDepth

func CalculateTreeDepth(qtyStreams, branchingFactor int) int

Types

type NewTreeInput

type NewTreeInput struct {
	QtyStreams      int
	BranchingFactor int
}

type Tree

type Tree struct {
	Nodes           []TreeNode
	MaxDepth        int
	QtyStreams      int
	BranchingFactor int
}

func NewTree

func NewTree(input NewTreeInput) Tree

func (*Tree) ToDisplay

func (t *Tree) ToDisplay(index int) string

ToDisplay returns a string representation of the tree to visualize it here: https://csacademy.com/app/graph_editor/ basically each line must be: <parent1> <child1> <parent1> <child2> <parent2> <child3>

type TreeNode

type TreeNode struct {
	Parent   int
	Children []int
	Index    int
	IsLeaf   bool
}

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL