메소드 | 설명 | |
---|---|---|
Add ( IComparable key, object data ) : void |
Add args: ByVal key As IComparable, ByVal data As Object key is object that implements IComparable interface performance tip: change to use use int type (such as the hashcode)
|
|
Clear ( ) : void | ||
ContainsKey ( IComparable key ) : bool | ||
Elements ( ) : |
||
Elements ( bool ascending ) : |
||
GetData ( IComparable key ) : object | ||
GetEnumerator ( ) : |
||
GetMaxKey ( ) : IComparable | ||
GetMaxValue ( ) : object | ||
GetMinKey ( ) : IComparable | ||
GetMinValue ( ) : object | ||
IsEmpty ( ) : bool | ||
KeyElements ( bool ascending ) : |
||
OrderedTree ( ) : System | ||
Remove ( IComparable key ) : void | ||
RemoveMax ( ) : void | ||
RemoveMin ( ) : void | ||
RotateLeft ( |
RotateLeft Rebalance the tree by rotating the nodes to the left
|
|
RotateRight ( |
RotateRight Rebalance the tree by rotating the nodes to the right
|
|
this ( IComparable key ) : object |
메소드 | 설명 | |
---|---|---|
Delete ( |
||
RestoreAfterDelete ( |
RestoreAfterDelete Deletions from red-black trees may destroy the red-black properties. Examine the tree and restore. Rotations are normally required to restore it
|
|
RestoreAfterInsert ( |
RestoreAfterInsert Additions to red-black trees usually destroy the red-black properties. Examine the tree and restore. Rotations are normally required to restore it
|
public Elements ( bool ascending ) : |
||
ascending | bool | |
리턴 |
public KeyElements ( bool ascending ) : |
||
ascending | bool | |
리턴 |