in scala/collection/immutable/Tree-class
class INode
-
protected case class INode(t1: GBTree[A,B], height: Int, siz: Int)
- extends InsertTree[A,B]
- with ScalaObject
- with CaseClass
Method Summary
|
protected
|
def balance_p(t: GBTree[A,B], subtree: GBTree[A,B]): InsertTree[A,B]
|
|
def insert_left(value: B, bigger: GBTree[A,B]): InsertTree[A,B]
|
|
def insert_right(value: B, smaller: GBTree[A,B]): InsertTree[A,B]
|
|
def node: GBTree[A,B]
|
Methods inherited from java/lang/Object-class
|
clone, eq, equals, finalize, getClass, hashCode, notify, notifyAll, synchronized, toString, wait, wait, wait |
Methods inherited from scala/collection/immutable/InsertTree-class
|
aNode, anInsertTree |
t1
val t1: GBTree[A,B]
height
val height: Int
siz
val siz: Int
insert_left
def insert_left(value: B, bigger: GBTree[A,B]): InsertTree[A,B]
insert_right
def insert_right(value: B, smaller: GBTree[A,B]): InsertTree[A,B]
balance_p
protected def balance_p(t: GBTree[A,B], subtree: GBTree[A,B]): InsertTree[A,B]
node
def node: GBTree[A,B]