System::Array::BinarySearch método
Contenido
[
Ocultar
]Array::BinarySearch(System::ArrayPtr<T>, const T&) method
Realiza una búsqueda binaria en el array ordenado.
static int System::Array<T>::BinarySearch(System::ArrayPtr<T> arr, const T &item)
| Parámetro | Tipo | Descripción |
|---|---|---|
| arr | System::ArrayPtr<T> | Arreglo ordenado en el que realizar la búsqueda |
| elemento | const T& | Un elemento a buscar |
ReturnValue
Index of the searched item if one is found, otherwise, a negative integer that is the bitwise complement of the index of the next item greater than searched item or, if there is no greater item, the bitwise complement of the number of elements in the array.
Ver también
- Typedef ArrayPtr
- Class Array
- Namespace System
- Library Aspose.PDF for C++
Array::BinarySearch(System::ArrayPtr<T>, const Y&, const SharedPtr<Collections::Generic::IComparer<Z>>&) method
NO IMPLEMENTADO.
template<typename Y,typename Z> static int System::Array<T>::BinarySearch(System::ArrayPtr<T> arr, const Y &item, const SharedPtr<Collections::Generic::IComparer<Z>> &comparer)