80
votes
158answers
8k views
Biggest performance improvement you’ve had with the smallest change?
What's the biggest performance improvement you've had with the smallest change? For example, I once improved the performance of a certain page on a high-profile web app by a factor of 10, just by …
4
votes
2answers
88 views
Best-case Running-time to solve an NP-Complete problem?
What is the fastest algorithm that exists up with to solve a particular NP-Complete problem? For example, a naive implementation of travelling salesman is O(n!), but with dynamic programming it can be …
0
votes
1answer
57 views
Running time of minimum spanning tree? ( Prim method )
I have written a code that solves MST using Prim method. I read that this kind of implementation(using priority queue) should have O(E + VlogV) = O(VlogV) where E is the number of edges and V number …
59
votes
32answers
4k views
When is assembler faster than C?
One of the stated reasons for knowing assembler is that, on occasion, it can be employed to write code that will be more performant than writing that code in a higher-level language, C in particular. …
26
votes
24answers
2k views
Performance optimization strategies of last resort?
There are plenty of performance questions on this site already, but it occurs to me that almost all are very problem-specific and fairly narrow. And almost all repeat the advice to avoid premature …
26
votes
22answers
3k views
Math optimization in C#
I've been profiling an application all day long and, having optimized a couple bits of code, I'm left with this on my todo list. It's the activation function for a neural network, which gets called …
0
votes
2answers
78 views
Estimate Power Consumption Based on Running Time Analysis / Code Size
I've developed and tested a C program on my PC and now I want to give an estimate of the power consumption required for the program to do a single run. I've analysised the running time of the …
0
votes
1answer
108 views
How to change iPhone app language during runtime?
Is there a way to change the application language during runtime?
So, after the change NSLocalizedString immediately returns the string for the new language.
What I'm doing now is changing the …
33
votes
17answers
5k views
Big O, how do you calculate/approximate it?
Most people with a degree in CS will certainly know what Big O stands for.
It helps us to measure how (in)efficient an algorithm really is and if you know in what category the problem you are trying …
5
votes
25answers
530 views
Will optimizing code become unnecessary?
If Moore's Law holds true, and CPUs/GPUs become increasingly fast, will software (and, by association, you software developers) still push the boundaries to the extent that you still need to optimize …
3
votes
7answers
199 views
How long does my code take to run?
How can I find out how much time my C# code takes to run?
1
vote
7answers
234 views
Another question about premature optimization
Knuth said:
We should forget about small efficiencies, say about 97% of the time: premature optimization is the root of all evil
I’m curious how he came up with 97%. Could someone please share …
3
votes
6answers
341 views
Why does this speed up my SQL query?
I learned a trick a while back from a DBA friend to speed up certain SQL queries. I remember him mentioning that it had something to do with how SQL Server compiles the query, and that the query path …
9
votes
14answers
4k views
Best way to reverse a string in C# 2.0
I've just had to write a string reverse function in C# 2.0 (i.e. LINQ not available) and came up with this:
public string Reverse(string text)
{
char[] cArray = text.ToCharArray();
string …
6
votes
14answers
1k views
Fastest function to generate Excel column letters in C#
What is the fastest c# function that takes and int and returns a string containing a letter or letters for use in an Excel function? For example, 1 returns "A", 26 returns "Z", 27 returns "AA", etc.
…
