BinaryTree.st
author Claus Gittinger <cg@exept.de>
Sun, 05 Aug 2012 18:43:24 +0200
changeset 2776 f15140d07975
parent 2770 24caf488ddc1
child 2777 06c0bd66713f
permissions -rw-r--r--
public again

"
    Public domain (1996 published in c.l.s) no limitation on use.

    This class is provided as-is, without any warranty. 
    It is not part of or covered by the ST/X copyright.
"
Object subclass:#BinaryTreeNode
	instanceVariableNames:'data leftSubtree rightSubtree'
	classVariableNames:''
	poolDictionaries:''
	category:'Collections-Ordered-Trees'
!