85
votes
24answers
30k views
Fastest way to determine if an integer’s square root is an integer
I'm looking for the fastest way to determine if a long value is a perfect square (i.e. its square root is another integer). I've done it the easy way, by using the built-in Math.sqrt() function, but …
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 …
74
votes
19answers
2k views
Is Disney’s FastPass Valid and/or Useful Queue Theory
At Disney World, they use a system called Fastpass to create a second, shorter line for popular rides. The idea is that you can wait in the standard line, often with a wait longer than an hour, or …
60
votes
36answers
5k views
What is the most ridiculous pessimization you’ve seen?
We all know that premature optimization is the root of all evil because it leads to unreadable/unmaintainable code. Even worse is pessimization, when someone implements an "optimization" because they …
42
votes
21answers
4k views
Best algorithm for this interview problem
Given a NxN matrix with 0s and 1s. Set every row that contains a 0 to all 0s and set every column that contains a 0 to all 0s.
For example
1 0 1 1 0
0 1 1 1 0
1 1 1 1 1
1 0 1 1 1
1 1 1 1 1
…
38
votes
10answers
2k views
Do try/catch blocks hurt performance when exceptions are not thrown?
During a code review with a Microsoft employee we came across a large section of code inside a try{} block. She and an IT representative suggested this can have effects on performance of the code. In …
37
votes
13answers
3k views
Is there a performance difference between i++ and ++i in C++?
We looked at this answer for C in this question:
http://beta.stackoverflow.com/questions/24886/is-there-a-performance-difference-between-i-and-i-in-c
What's the answer for C++?
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 …
30
votes
17answers
3k views
Is there a performance difference between i++ and ++i in C?
Is there a performance difference between i++ and ++i if the resulting value is not used?
28
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 …
27
votes
17answers
2k views
Python Performance - have you ever had to rewrite in something else?
Has anyone ever had code in Python, that turned out not to perform fast enough?
I mean, you were forced to choose another language because of it?
We are investigating using Python for a couple of …
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 …
24
votes
12answers
827 views
How can I optimize my basic physics simulator?
I've written a simple physics modeler that allows me to bounce balls around the screen. You can click and drag to launch a ball, or you can generate balls hundreds at a time and watch them interact …
24
votes
29answers
2k views
What optimizations today are going to be useless tomorrow?
I hope we all know by now that Premature optimization is the root of all evil.
One side of that quote means by optimizing you are increasing complexity and complexity is evil. The other less known …
20
votes
7answers
684 views
Reducing memory usage of .NET applications?
I was wondering if anyone had any tips to reduce the memory usage of .NET applications. Consider the following simple C# program:
class Program
{
static void Main(string[] args)
{
…
