Packages

object Tree

The Tree companion object provides methods for building trees. Toggle 'ANIMATE' flag to turn animation on/off.

Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Tree
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Value Members

  1. def apply(pred: Array[Int], labl: Array[TLabel], depth: Double, name: String): Tree

    Create a tree from an inverted tree, i.e., a predecessor/parent list.

    Create a tree from an inverted tree, i.e., a predecessor/parent list.

    pred

    the predecessor/parent list

    labl

    the node labels

    depth

    the estimated average depth of the tree (used by animation)

    name

    the name of tree

    See also

    TreeTest4 for an example.

  2. def apply(depth: Double, minOut: Int = 0, maxOut: Int = 2, stream: Int = 0): Tree

    Randomly generate a tree.

    Randomly generate a tree.

    depth

    the depth of the tree

    minOut

    the minimum number of children allowed (0 => binary tree)

    maxOut

    the maximum number of children allowed (2 => binary tree)

    stream

    the random number stream