| FibonacciHeapTElementInsert Method  | 
            Inserts the specified element into the heap at the right spot. 
            
 
Namespace: SD.Tools.Algorithmia.HeapsAssembly: SD.Tools.Algorithmia (in SD.Tools.Algorithmia.dll) Version: 1.2.0.0 (1.2.14.1118)
Syntaxpublic override void Insert(
	TElement element
)
Public Overrides Sub Insert ( 
	element As TElement
)
Parameters
- element
 - Type: TElement
The element to insert. 
RemarksIt's not possible to add an element twice as this leads to problems with removal and lookup routines for elements: which node to process?
See Also