Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I want to find the lowest number of the four, but this looks kinda wierd , isnt there a smarter and shorter way to do it?

That is what I have:

int findlowest(int one, int two, int three, int four) {
    int output = one //as of now , we will be outputting one , except if we find a lower score.
    if(output > two) { out = two;} // if output is proven to be bigger than two, two is our new output.
    if(output > three){ output = three;} //same operation with three
    if(output > four){ output = four;} // same operation with four
    return output;
}
share|improve this question

5 Answers

up vote 18 down vote accepted
std::min(a, std::min(b, std::min(c, d)));

Include <algorithm>.

share|improve this answer
Crap you beat me by 7 seconds, and mine had a mistake! – Marlon Jul 5 '11 at 6:49
is the balanced tree better std::min(std::min(a,b), std::min(c, d));? – osgx Jul 5 '11 at 6:50
3  
@osgx: No functional difference. – Cat Plus Plus Jul 5 '11 at 6:52
3  
@osgx: None. Why would there be any difference? – Cat Plus Plus Jul 5 '11 at 6:58
4  
because std::min(a,b) and std::min(c, d) in my version can be done in parallel. – osgx Jul 5 '11 at 7:00
show 3 more comments

c++11:

int minimum = std::min( { 1,2,3,4,5 } );
share|improve this answer
What compiler are you using? gcc 4.6 with -std=c++0x doesn't like this. – juanchopanza Jul 5 '11 at 7:47
@juanchopanza Works fine with g++4.5 – log0 Jul 5 '11 at 9:13
5  
That's 5 values. How do you do 4, like was asked for? :-) – Bo Persson Jul 5 '11 at 10:18
Sweet, thanks! I used to write my own variadic min, but this is much better! – Kerrek SB Jul 5 '11 at 11:20
min_int = min(min(one, two), min(three, four));
share|improve this answer
int a[] = {1,2,3,4,5};
int minimum = *std::min_element(a, a+5);
share|improve this answer
1  
This version of std::min_element returns an "iterator" to the position of the minimum, so you need to dereference it. – juanchopanza Jul 5 '11 at 7:10

Lots of answers saying to use the Standard library facilities - they're right, it covers this case! But, for the educational value, here's a slightly more concise way to do what you were doing:

int findlowest(int a, int b, int c, int d)
{
    int of_a_b = a < b ? a : b;
    int of_c_d = c < d ? c : d;
    return of_a_b < of_c_d ? of_a_b : of_c_d;
}

Easily generalised for different types (though C++03 doesn't make it easy to generalise for arbitrary numbers of arguments):

template <typename T>
T findlowest(const T& a, const T& b, const T& c, const T& d)
{
    const T& of_a_b = a < b ? a : b;
    const T& of_c_d = c < d ? c : d;
    return of_a_b < of_c_d ? of_a_b : of_c_d;
}
share|improve this answer
1) How do you convert T a to int of_a_b? 2) your of_* should be const. – Kerrek SB Jul 5 '11 at 11:22
Kerrek: 1) well spotted, thanks. 2) actually, I'll change them to const references so there's no potential copy invoked there. Cheers. – Tony D Jul 6 '11 at 0:53

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.