共用方式為


binary_search (STL/CLR)

測試已排序的範圍中是否有等於指定之值 (或在某種意義上,相當於二進位述詞指定之值) 的項目。

template<class _FwdIt, class _Ty> inline
    bool binary_search(_FwdIt _First, _FwdIt _Last, const _Ty% _Val);
template<class _FwdIt, class _Ty, class _Pr> inline
    bool binary_search(_FwdIt _First, _FwdIt _Last,
        const _Ty% _Val, _Pr _Pred);

備註

這個函式的行為與 STL 函式 binary_search 相同。 如需詳細資訊,請參閱binary_search

需求

標頭: <cliext/algorithm>

命名空間: cliext

請參閱

參考

algorithm (STL/CLR)