notes/pl/cpp/libfws/stl/algo/minmax-element.txt
Ihar Hancharenka 5dff80e88e first
2023-03-27 16:52:17 +03:00

7 строки
180 B
Plaintext

using namespace std;
...
const auto v = { 3, 9, 1, 4, 2, 5, 9 };
const auto [min, max] = minmax_element(begin(v), end(v));
cout << "min: " << *min << " max: " << *max << endl;
...