How can I optimize the following code so that it executes faster?
static void Main(string[] args)
{
String a = "Hello ";
String b = " World! ";
for (int i=0; i<20000; i++)
{
a = a + b;
}
Console.WriteLine(a);
}
|
How can I optimize the following code so that it executes faster?
|
|||||||||||||||||||||
|
|
From the StringBuilder documentation:
|
|||||||||||||||||||
|
|
Since its output is predetermined, it would run faster if you just hardcoded the literal value that is built by the loop. |
|||||||||||||||||
|
|
Perform output in the loop (5x faster, same result):
Or allocate the memory on forehand and fill it up (4x faster, same result):
|
|||||||||
|
I can't believe that they teach nonsense like this in schools. There isn't a real-world example of why you would ever do this, let alone optimize it. All this teaches is how to micro-optimize a program that does nothing useful, and that's counterproductive to the student's health as a programmer/developer. |
|||||||||
|
|
MemoryStream is slightly faster than using StringBuilder:
|
|||
|
|
|
It's likely to be IO dominated ( writing the output to the console or a file will be the slowest part ), so probably won't benefit from a high degree of optimisation. Simply removing obvious pessimisations should suffice. As a general rule, don't create temporary objects. Each iteration of your loop creates a temporary string, coping the entire previous string in One technique is to use a builder or buffer to create fewer temporary objects, instead creating a long string in memory using a However, you can go one stage further and achieve the same functionality by writing the output directly, rather than creating any temporary strings or buffers, using Another common optimisation is to unroll the loop. So instead of having a loop which has one line which writes one " World! " and is looped 20,000 times, you can have (say) five lines which write one " World! " each and loop them 4,000 times. That's normally only worth doing in itself if the cost of incrementing and testing the loop variable is high compared to what you're doing in the loop, but it can lead to other optimisations. Having partially unrolled the loop, you can combine the code in the loop and write five or ten " World! "s with one call to Writing to console, in cmd window, it appears limited by speed of console window: ( times in seconds for 100 runs )
writing to file, the times for the different techniques differ:
From this it's possible to draw two conclusions: Most of the improvements don't matter if you're writing to the console in a cmd.exe window. You do have to profile the system as a whole, and (unless you're trying to reduce the energy use of the CPU ) there's no point optimising one component beyond the capbilities of the rest of the system. Although apparently doing more work - copying the data more and calling the same number of functions, the StringBuilder approach is faster. This implies that there's quite a high overhead in each call to Console.Write, compared with the equivalent in non-managed languages. writing to file, using gcc C99 on Win XP:
The lower cost of the system call in C allows it to get towards being IO bound, rather than limited by the .net runtime boundaries. So when optimizing .net, managed/unmanaged boundaries become important. |
||||
|
|
|
I wonder, would this be any faster?
|
|||||
|
|
Depends on what's going in the String object I guess. If internally all they have is a null-terminated string, then you could optimize by storing the length of the string somewhere. Also, if you're just outputting to stdout, it would make more sense to move your output call inside the loop (less memory overhead), and it should also be faster. |
|||
|
|
|
Here are some timing results. Each test was conducted starting with 20000 iterations. Every test includes output in the timings, unless stated otherwise. Each number for a group means number of iterations was 10 times greater than the previous. If there are less than 4 numbers, the test was taking too long so i killed it. "Parallize it" means i split the number of concatenations evenly over 4 threads and appended the results when all had finished (could probable have saved a little time here and put them into a queue and appended them as they finished, but didn't think of that until now). All times are in milliseconds. 656 6658 66999 370717 output hello loop output world. no concatenation. 658 6641 65807 554546 build with stringbuilder then output 664 6571 65676 314140 build with stringbuilder with large initial size no output 2761 367042 OP, strings only (killed test while concatenating; nothing printed to screen) 167 43227 parallize it OP no output 27 40 323 1758 parallize it stringbuilder no output |
||||
|
|