I have forgotten
my Password

Or login with:

  • Facebookhttp://facebook.com/
  • Googlehttps://www.google.com/accounts/o8/id
  • Yahoohttps://me.yahoo.com
ComputingStlAlgorithmsMin Max

//

Returns the lowest of its two arguments
+ View version details

Key Facts

Gyroscopic Couple: The rate of change of angular momentum (\inline \tau) = \inline I\omega\Omega (In the limit).
  • \inline I = Moment of Inertia.
  • \inline \omega = Angular velocity
  • \inline \Omega = Angular velocity of precession.


Blaise Pascal (1623-1662) was a French mathematician, physicist, inventor, writer and Catholic philosopher.

Leonhard Euler (1707-1783) was a pioneering Swiss mathematician and physicist.

Definition

The min() algorithm is defined in the standard header <algorithm> and in the nonstandard backward-compatibility header <algo.h>.

Interface

#include <algorithm>
template < class Type >
   const Type& min(
      const Type& left, 
      const Type& right
   );
template < class Type, class Pr >
   const Type& min(
      const Type& left, 
      const Type& right,
      BinaryPredicate comp
   );

Parameters:
Parameter Description
left The first of the two objects being compared
right The second of the two objects being compared
comp A binary predicate used to compare the two objects

Description

Min function compares two objects and finds the smaller of the two values.

The first version compares objects using operator< and the second compares objects using the function object comp.

Return Value

Returns the smaller of the two values.

Complexity

Constant complexity.
Example:
Example - min algorithm
Problem
This program illustrates the use of the STL min() algorithm (default version) to find the minimum of two integer literal values, the minimum of two integer values stored in simple integer variables, and (in two different ways) the minimum of two integer values stored in a vector of integers.
Workings
#include <iostream>
#include <vector>
#include <algorithm>
 
using namespace std;
 
int main()
{
  cout <<"\nFirst, we find the minimum of two integer literal values.\n";
  cout <<"min(12, -3) = "<<min(12, -3);
 
  int first = 7;
  int second = 10;
  cout <<"\nNext, we find the minimum of two integer \nvalues stored in simple integer variables";
  cout <<"\nfirst = "<<first<<"    second = "<<second<<endl;
  cout <<"min(first, second) = "<<min(first, second);
 
  int a[] = {2, 6, 10, 8, 4};
  vector<int> v(a, a+5);
 
  cout <<"\nHere are the integer values in the vector:\n";
  for (vector<int>::size_type i=0; i<v.size(); i++)
    cout <<v.at(i)<<" ";
 
  cout <<"\nNow we find the minimum of the first and last values "
         "\nstored in the vector of integers using one approach.";
  cout <<"\nmin(v.at(0), v.at(4)) = "<<min(v.at(0), v.at(4));
 
  cout <<"\nFinally, we find the minimum of the first and last values "
         "\nstored in the vector of integers using a second approach.";
  cout <<"\nmin(*v.begin(), *(v.end()-1)) = "<<min(*v.begin(), *(v.end()-1));
 
  return 0;
}
Solution
Output:

First, we find the mminimum of two integer literal values.
min(12, -3) = -3

Next, we find the minimum of two integer
values stored in simple integer variables
first = 7 second = 10
min(first, second) = 7

Here are the integer values in the vector:
2 6 10 8 4

Now we find the minimum of the first and last values
stored in the vector of integers using one approach.
min(v.at(0), v.at(4)) = 2

Finally, we find the minimum of the first and last values
stored in the vector of integers using a second approach.
min(*v.begin(), *(v.end()-1)) = 2
References