# std::min_element(begin_iterator, end_iterator);
std::vector<int> v = {3, 2, 1, 4, 5, 6};
std::cout << "Min element: " << *std::min_element(v.begin(), v.end());
*min_element (first_index, last_index);
//example
cout << "
Min Element = " << *min_element(a.begin(), a.end());
// std::min_element(begin_iterator, end_iterator);
std::vector<int> v = {3, 2, 1, 4, 5, 6};
std::cout << "Min element: " << *std::min_element(v.begin(), v.end());
Code Example |
---|
Cpp :: queue implementation using linked list in cpp |
Cpp :: read file into vector |
Cpp :: switch case with string c++ |
Cpp :: cpp bubble sort |
Cpp :: c++ merge sort |
Cpp :: vector erase specific element |
Cpp :: queue in c++ |
Cpp :: c++ iterate over vector |
Cpp :: prints out the elements in the array c++ |
Cpp :: c++ case |
Cpp :: c++ replace string |
Cpp :: access part of string in c++ |
Cpp :: c++ string to int conversion |
Cpp :: struct and array in c++ |
Cpp :: int_max cpp |
Cpp :: c++ get full line of input |
Cpp :: c++ if in equivalent |
Cpp :: sieve cpp |
Cpp :: decltype in c++ |
Cpp :: how to easily trim a str in c++ |
Cpp :: log base 10 c++ |
Cpp :: remove decimal c++ |
Cpp :: C++ String Copy Example |
Cpp :: how to find the sum of a vector c++ |
Cpp :: how to code string to int converter c++ |
Cpp :: c++ lambda |
Cpp :: stoi() c++ |
Cpp :: memmove |
Cpp :: c++ vector of class objects |
Cpp :: how to split string into words c++ |