|
InsertSort
Inserts an element in a sorted array.
bool InsertSort(
|
Parameters
element
[in] Value of the element to be inserted into a sorted array
Return Value
true - successful, false - cannot insert the element.
Note
Element is not added to the array if an invalid pointer (such as NULL) is passed as a parameter.
Example:
//--- example for CArrayObj::InsertSort(CObject*)
|