BinTree

scalation.database.BinTree
class BinTree[T](val elem: T)(implicit evidence$1: ClassTag[T])

Attributes

Graph
Supertypes
class Object
trait Matchable
class Any

Members list

Value members

Concrete methods

def addLeft(item: T): BinTree[T]
def addRigh(item: T): BinTree[T]
def collectLeaves(): ArrayBuffer[T]

Collect all the leaves of the binary tree.

Collect all the leaves of the binary tree.

Attributes

def printTree(): Unit

Print the binary tree.

Print the binary tree.

Attributes

Concrete fields

val elem: T