Uses of Class
org.jheaps.tree.BinaryTreeSoftHeap.TreeNode
-
Packages that use BinaryTreeSoftHeap.TreeNode Package Description org.jheaps.tree Heaps using an explicit "pointer-based" tree representation -
-
Uses of BinaryTreeSoftHeap.TreeNode in org.jheaps.tree
Fields in org.jheaps.tree declared as BinaryTreeSoftHeap.TreeNode Modifier and Type Field Description (package private) BinaryTreeSoftHeap.TreeNode<K>BinaryTreeSoftHeap.TreeNode. left(package private) BinaryTreeSoftHeap.TreeNode<K>BinaryTreeSoftHeap.TreeNode. right(package private) BinaryTreeSoftHeap.TreeNode<K>BinaryTreeSoftHeap.RootListNode. rootMethods in org.jheaps.tree that return BinaryTreeSoftHeap.TreeNode Modifier and Type Method Description private BinaryTreeSoftHeap.TreeNode<K>BinaryTreeSoftHeap. combine(BinaryTreeSoftHeap.TreeNode<K> x, BinaryTreeSoftHeap.TreeNode<K> y)Combine two trees into a new tree.Methods in org.jheaps.tree with parameters of type BinaryTreeSoftHeap.TreeNode Modifier and Type Method Description private BinaryTreeSoftHeap.TreeNode<K>BinaryTreeSoftHeap. combine(BinaryTreeSoftHeap.TreeNode<K> x, BinaryTreeSoftHeap.TreeNode<K> y)Combine two trees into a new tree.private voidBinaryTreeSoftHeap. sift(BinaryTreeSoftHeap.TreeNode<K> x)Sift elements from children nodes until the current node has enough elements in its list.Constructors in org.jheaps.tree with parameters of type BinaryTreeSoftHeap.TreeNode Constructor Description RootListNode(BinaryTreeSoftHeap.TreeNode<K> tree)
-