a) for(int i = 100000; i > 0; i--) {}
b) for(int i = 1; i < 100001; i++) {}
The answer is there on this website (question 3). I just can't figure out why?
|
4
|
a) b) The answer is there on this website (question 3). I just can't figure out why?
|
||||||||||||||||||||
|
|
|
When you get down to the lowest level (machine code but I'll use assembly since it maps one-to-one mostly), the difference between a loop decrementing to 0 and one incrementing to 50 (for example) is often along the lines of:
However, asking which of the two loops:
is faster is useless since neither of them does anything useful. The fastes version of both those loops is: They'll only become useful when you start doing some useful work inside the braces and, at that point, the work will dictate which order you should use. For example if you need to count from 1 to 100,000, you should use the second loop. That's because the advantage of counting down (if any) is likely to be swamped by the fact that you have to evaluate
( Since you'll only be taking the hit for an incrementing loop once per iteration, and you'll be taking the hit for the subtraction at least once per iteration (assuming you'll be using If you need to count up, count up. If you need to count down, count down. |
||||
|
|
|
Such questions have their base on old best-practice recommendations. It's all about comparison: comparing to 0 is known to be faster. Years ago this might have been seen as quite important. Nowadays, especially with Java, I'd rather let the compiler and the VM do their job and I'd focus on writing code that is easies to maintain and understand. Unless there are reasons for doing it otherwise. Remember that Java apps don't always run on HotSpot and/or fast hardware. |
||
|
|
|
|
Typically real code will run faster counting upwards. There are a few reasons for this:
So happily doing the right thing will usually be faster. Unnecessary micro-optimisation is evil. I haven't purposefully written backward loops since programming 6502 assembler. |
||
|
|
|
|
Are you sure that the interviewer who asks such a question expects a straight answer ("number one is faster" or "number two is faster"), or if this question is asked to provoke a discussion, as is happening in the answers people are giving here? In general, it's impossible to say which one is faster, because it heavily depends on the Java compiler, JRE, CPU and other factors. Using one or the other in your program just because you think that one of the two is faster without understanding the details to the lowest level is superstitious programming. And even if one version is faster than the other on your particular environment, then the difference is most likely so small that it's irrelevant. Write clear code instead of trying to be clever. |
||
|
|
|
|
A better question is; Which is easier to understand/work with? This is far more important than a notional difference in performance. Personally, I would point out that performance shouldn't be the criteria for determining the difference here. If they didn't like me challenging their assumption on this, I wouldn't be unhappy about not getting the job. ;) |
||
|
|
|
This is about the dumbest question I have ever seen. The loop body is empty. If the compiler is any good it will just emit no code at all. It doesn't do anything, can't throw an exception and doesn't modify anything outside of its scope. Assuming your compiler isn't that smart, or that you actually didn't have an empty loop body: The "backwards loop counter" argument makes sense for some assembly languages (it may make sense to the java byte code too, I don't know it specifically). However, the compiler will very often have the ability to transform your loop to use decrementing counters. Unless you have loop body in which the value of i is explicitly used, the compiler can do this transformation. So again you often see no difference. |
||
|
|
|
|
On a modern Java implementation this is not true. Summing up the numbers up to one billion as a benchmark: Java(TM) SE Runtime Environment 1.6.0_05-b13 Java HotSpot(TM) Server VM 10.0-b19 up 1000000000: 1817ms 1.817ns/iteration (sum 499999999500000000) up 1000000000: 1786ms 1.786ns/iteration (sum 499999999500000000) up 1000000000: 1778ms 1.778ns/iteration (sum 499999999500000000) up 1000000000: 1769ms 1.769ns/iteration (sum 499999999500000000) up 1000000000: 1769ms 1.769ns/iteration (sum 499999999500000000) up 1000000000: 1766ms 1.766ns/iteration (sum 499999999500000000) up 1000000000: 1776ms 1.776ns/iteration (sum 499999999500000000) up 1000000000: 1768ms 1.768ns/iteration (sum 499999999500000000) up 1000000000: 1771ms 1.771ns/iteration (sum 499999999500000000) up 1000000000: 1768ms 1.768ns/iteration (sum 499999999500000000) down 1000000000: 1847ms 1.847ns/iteration (sum 499999999500000000) down 1000000000: 1842ms 1.842ns/iteration (sum 499999999500000000) down 1000000000: 1838ms 1.838ns/iteration (sum 499999999500000000) down 1000000000: 1832ms 1.832ns/iteration (sum 499999999500000000) down 1000000000: 1842ms 1.842ns/iteration (sum 499999999500000000) down 1000000000: 1838ms 1.838ns/iteration (sum 499999999500000000) down 1000000000: 1838ms 1.838ns/iteration (sum 499999999500000000) down 1000000000: 1847ms 1.847ns/iteration (sum 499999999500000000) down 1000000000: 1839ms 1.839ns/iteration (sum 499999999500000000) down 1000000000: 1838ms 1.838ns/iteration (sum 499999999500000000) Note that the time differences are brittle, small changes somewhere near the loops can turn them around. Edit: The benchmark loops are
and
Using a sum of type int is about three times faster, but then sum overflows. With BigInteger it is more than 50 times slower:
|
||||||||
|
|
|
With regards for testing for zero in the JVM: it can apparently be done with ifeq whereas testing for anything else requires if_icmpeq which also involves putting an extra value on the stack. Testing for |
||||||||
|
|
|
The loops are identical, except for one critical part: i > 0; and i < 100001; The greater than zero check is done by checking the NZP (Commonly known as condition code or Negative Zero or Positive bit) bit of the computer. The NZP bit is set whenever operation such as load, AND, addition ect. are performed. The greater than check cannot directly utilize this bit (and therefore takes a bit longer...) The general solution is to make one of the values negative (by doing a bitwise NOT and then adding 1) and then adding it to the compared value. If the result is zero, then they're equal. Positive, then the second value (not the neg) is greater. Negative, then the first value (neg) is greater. This check takes a slightly longer than the direct nzp check. I'm not 100% certain that this is the reason behind it though, but it seems like a possible reason... |
||
|
|
|
|
These kinds of questions are largely an irrelevant distraction that some people get obsessed with it. Call it the Cult of Micro-optimization or whatever you like but is it faster to loop up or down? Seriously? You use whichever is appropriate for what you're doing. You don't write your code around saving two clock cycles or whatever it is. Let the compiler do what it's for and make you intent clear (both to the compiler and the reader). Another common Java pessimization is:
because excessive concatenation does result in memory fragmentation but for a constant the compiler can (and will) optimize this:
where it won't optimize the first and the second is easier to read. And how about There are a couple of useful things in this list like knowing that a But don't bother second-guessing the compiler unless it really matters (and I bet you that 99.99% of the time it doesn't). |
||||||
|
|
|
The bottom line is that for any non-performance critical application, the difference is probably irrelevant. As others have pointed out there are times when using ++i instead of i++ could be faster, however, especially in for loops any modern compiler should optimize that distinction away. That said, the difference probably has to do with the underlying instructions that get generated for the comparison. Testing if a value is equal to 0 is simply a |
||||||||
|
|
|
The answer is a (as you probably found out on the website) I think the reason is that the |
||
|
|
|
|
On many compilers, the machine instructions emitted for a loop going backwards, are more efficient, because testing for zero (and therefore zero'ing a register) is faster than a load immediate of a constant value. On the other hand, a good optimising compiler should be able to inspect the loop inner and determine that going backwards won't cause any side effects... BTW, that is a terrible interview question in my opinion. Unless you are talking about a loop which runs 10 millions of times AND you have ascertained that the slight gain is not outweighed by many instances of recreating the forward loop value (n - i), any performance gain will be minimal. As always, don't micro-optimise without performance benchmarking and at the expense of harder to understand code. |
||||||||
|