函式功能
查找一定範圍內元素的個數。
查找[first,last)範圍內,與toval等價的第一個元素,返回一個疊代器。如果沒有這個元素,將返回last。
(Returns an iterator to the first element in the range [first,last) that compares equal toval. If no such element is found, the function returnslast.)
函式原型
輸入參數
first, last
輸入查詢序列的開始和結束位置,注意:這兩個參數為疊代器。
val
要查詢的值
返回值
返回查詢結果的疊代器
實例
運行結果