vote up 1 vote down star

Which is faster? switch or if-else ?

flag
duplicate: see stackoverflow.com/questions/97987/… – Rob Allen Sep 24 '08 at 18:51

closed as exact duplicate by Vinko Vrsalovic Oct 7 '08 at 7:01

8 Answers

vote up 0 vote down

This depends on the compiler. Generally, though, a switch statement will be at least as fast as an equivalent block of if/else statements. However, an good optimizing compiler will automatically convert if/else statements into switch statements (or potentially vice versa) when it will improve speed.

The likelihood that you will ever see a performance difference between the two is basically nil, though. Whenever you have to choose between the two, use whichever is more readable.

link|flag
vote up 0 vote down

An optimized switch statement jumps to the right code after a lookup in a table, which is O(1). The if-else statements does a compare and you'll have to make a if-else tree if there are lots of options, which is of O(Log n).

If you have lots of options to choose from: take the switch.

link|flag
vote up 1 vote down

Most modern compilers optimize both. The decision to use if/switch should only depend on coding style and readability.

link|flag
vote up 0 vote down

switch is completely faster, but if you have statements where you can't just replace a "if" statement with a "switch", then don't do it.

link|flag
vote up 0 vote down

If you use C/C++ switch is because it sets up a jump table, which is way faster. I am unsure how other compilers do it.

link|flag
vote up 7 vote down

Has been asked before:

http://stackoverflow.com/questions/97987/

link|flag
actually, they are different questions – jjnguy Sep 24 '08 at 18:50
true, but my answer is on the top and I know I've talked about performance as well as style.. – Nils Pipenbrinck Sep 24 '08 at 18:53
kk, i c that now – jjnguy Sep 24 '08 at 20:04
vote up 2 vote down

I wouldn't worry about it unless super speed is crucial.

I would use what is easier to read.

link|flag
vote up 0 vote down

Depends on the compiler, of course, but in general switch should be optimal.

link|flag

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