6
votes
13answers
919 views
Improving the quick sort.
How can I improve the following quick sort(performance wise).Any suggestions?
void main()
{
quick(a,0,n-1);
}
void quick(int a[],int lower,int upper)
…
7
votes
13answers
495 views
Which of these pieces of code is faster in Java?
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?
2
votes
2answers
144 views
Faster implementation of Math.round?
Are there any drawbacks to this code, which appears to be a faster (and correct) version of java.lang.Math.round?
public static long round(double d) {
if (d > 0) {
…
1
vote
6answers
232 views
C coding practices for performance or code size - beyond what a compiler does
I'm looking to see what can a programmer do in C, that can determine the performance and/or the size of the generated object file.
For e.g,
1. Declaring simple get/set functions a …
1
vote
4answers
177 views
Which is more efficient?
Just curious, which is more efficient?
This:
String a = someString + "." + anotherString;
Or this:
String a = someString + '.' + anotherString;
7
votes
5answers
310 views
Does using xor reg, reg give advantage over mov reg, 0?
There're two well-known ways to set an integer register to zero value on x86.
Either
mov reg, 0
or
xor reg, reg
There's an opinion that the second variant is better since th …
0
votes
3answers
154 views
Bitwise XORing and shifting of integer arrays
Suppose a bit sequence of size M, and another bit sequence of size N, with M >> N. Both M and N can be saved inside integer arrays: If N has a length of 30 then an array with only …
0
votes
1answer
28 views
JIT Optimization of an indexer which is only modified sequentaly
I am curious as to what happens in this situation:
int i = 0;
MessageBox.Show(i++.ToString ());
MessageBox.Show(i++.ToString ());
Array[i++] = Foo;
Assuming this is the only way …
0
votes
3answers
70 views
CSS micro-optimization
I'm considering micro-optimization of a huge CSS stylesheet and have a couple questions related to that:
Is lowercase better than uppercase for reducing file size?
Is background- …
2
votes
7answers
791 views
Optimize Binary Search Algorithm
In a binary search, we have two comparisons one for greater than and other for less
than, otherwise its the mid value. How would you optimize so that we need to check only once?
b …
0
votes
3answers
204 views
Optimizing Java code
How can I optimize this code ? I made IPFilter and I need to optimize it.
package com.ipfilter;
import java.util.HashMap;
import java.util.Map;
/**
* IPFilter
*
* …
1
vote
4answers
39 views
Placing index columns on the left of a mysql WHERE statement?
I was curious since i read it in a doc. Does writing
select * from CONTACTS where id = β098β and name like βTom%β;
speed up the query as oppose to
select * from CONTACTS where …
1
vote
6answers
271 views
Java, Most Expensive Statements? [closed]
What are the most expensive (both in terms of bytecode and cpu cycles) statements in the Java Programming language?
1
vote
7answers
318 views
What is faster in Python, “while” or “for xrange”
We can do numeric iteration like:
for i in xrange(10):
print i,
and in C-style:
i = 0
while i < 10:
print i,
i = i + 1
Yes, I know, the first one is less error …
1
vote
9answers
372 views
C pointers vs direct member access for structs
Say I have a struct like the following ...
typedef struct {
int WheelCount;
double MaxSpeed;
} Vehicle;
... and I have a global variable of this type (I'm well aware of the …
