How to find minimum and maximum element in a list with C++

1 Answer

0 votes
#include <iostream> 
#include <list>
#include <algorithm>

using std::list;
using std::cout;  
using std::endl;

int main()
{
	list<int> lst{ 13, 12, 300, 1, 98 };

	cout << *max_element(lst.begin(), lst.end()) << endl;
	cout << *min_element(lst.begin(), lst.end()) << endl;

	return 0;
}

/*
run:

300
1

*/

 



answered Apr 27, 2018 by avibootz
...