#include <iostream>
#include <algorithm>
using namespace std;
bool myfn(int i, int j) { return i<j; }
int main () {
int myints[] = {3,7,2,5,6,4,9};
// using function myfn as comp:
cout << "The smallest element is " << *min_element(myints,myints+7,myfn) << endl;
cout << "The largest element is " << *max_element(myints,myints+7,myfn) << endl;
return 0;
}
myfn
上記のコードを考慮すると、渡すか渡すか&myfn
で 違いはありますmin_element
か?ファンクターを渡そうとしたとき、どちらがより標準的な方法でしょうか?