Tagged Questions

0
votes
1answer
49 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 …
79
votes
157answers
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 facto …
56
votes
31answers
3k 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 languag …
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 …
0
votes
2answers
77 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 …
0
votes
1answer
74 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 i …
26
votes
21answers
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, …
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 pro …
5
votes
25answers
521 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 sti …
3
votes
7answers
198 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
232 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 …
3
votes
6answers
332 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 …
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", 2 …
3
votes
4answers
110 views

Performing your own runtime analysis of your code in C#

I have written a large C# app with many methods in many classes. I'm trying to keep a log of what gets called and how often during my development. (I keep a record in a DB) Every …
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.ToCharArr …

1 2 3 4 next
15 30 50 per page