System::Array::BinarySearch metod

Array::BinarySearch(System::ArrayPtr<T>, const T&) method

Utför binärsökning i den sorterade arrayen.

static int System::Array<T>::BinarySearch(System::ArrayPtr<T> arr, const T &item)
ParameterTypBeskrivning
arrSystem::ArrayPtr<T>Sorterad array att utföra sökning i
objektconst T&Ett objekt att söka efter

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.

Se även

Array::BinarySearch(System::ArrayPtr<T>, const Y&, const SharedPtr<Collections::Generic::IComparer<Z>>&) method

INTE IMPLEMENTERAD.

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)

Se även