|
Sort. Insertion< T> Method (T[] , Int32, Int32, Func< T, T, Int32> , Boolean)
|
Insertion sort.
Namespace:
Accord
Assembly:
Accord.Math (in Accord.Math.dll) Version: 3.8.0
Syntaxpublic static int Insertion<T>(
T[] keys,
int first,
int last,
Func<T, T, int> comparer,
bool asc = true
)
Public Shared Function Insertion(Of T) (
keys As T(),
first As Integer,
last As Integer,
comparer As Func(Of T, T, Integer),
Optional asc As Boolean = true
) As Integer
Request Example
View SourceParameters
- keys
- Type:T[]
- first
- Type: System.Int32
- last
- Type: System.Int32
- comparer
- Type: System.Func<T, T, Int32>
- asc (Optional)
- Type: System.Boolean
Type Parameters
- T
Return Value
Type:
Int32
See Also