Method and Description |
---|
com.nwawsoft.util.datastructures.BinaryTree.addTree(Tree)
use setLeftTree/setRightTree/getLeftTree/getRightTree instead.
|
com.nwawsoft.util.datastructures.List.count()
use getLength() instead to not change the currently selected object.
|
com.nwawsoft.util.datastructures.Tree.getTrees()
this is only for easier testing purposes but modifying the internal list via this call may
invalidate the integrity of the synchronization between treeList and subTreeCount.
|
com.nwawsoft.util.datastructures.BinaryTree.removeTree(int)
use setLeftTree/setRightTree/getLeftTree/getRightTree instead.
|
Constructor and Description |
---|
com.nwawsoft.util.datastructures.BinaryTree(List)
Why would anyone want to create a
BinaryTree from a List ?! Just use any other
constructor. |