Versions in this module Expand all Collapse all v0 v0.1.0 Feb 7, 2016 Changes in this version + type BTNode struct + Left *BTNode + Parent *BTNode + Right *BTNode + Value interface{} + func NewBTNode(v interface{}, l *BTNode, r *BTNode) (p *BTNode) + func (n *BTNode) SetLeft(c *BTNode) + func (n *BTNode) SetRight(c *BTNode) + func (n *BTNode) String() (s string) + type Tree struct + Root *BTNode + func NewTree() *Tree + func (btree *Tree) String() (s string)