2
votes
4answers
73 views
Erlang : Which is more efficient in this scenario - using try catch or case statements?
Say I have some function fn1() in Erlang which returns {ok, Result} if the function was executed successfully and {error, "ErrorReason"} if there was an error.
Now in another function fn2() I call …
1
vote
1answer
63 views
Collision Resolution : Quadratic Probing vs. Separate Chaining
Ok, so I've been doing some experiments with hash tables and different collision resolution problems. I'm trying to figure out which is more efficient for doing finds, a hash table that uses separate …
8
votes
9answers
359 views
How much does the order of case labels affect the efficiency of switch statements?
Consider:
if (condition1)
{
// Code block 1
}
else
{
// Code block 2
}
If I know that condition1 will be true the majority of the time, then I should code the logic as written, instead of:
…
1
vote
2answers
40 views
iPhone animation efficiency solutions, layering questions
I'm working on writing a rather basic app. It uses minimal touch input, and mostly just plays fancy animations. There isn't much animation, but the way it's currently done seems super inefficient and …
0
votes
4answers
96 views
Is it more efficient to call the .net Garbage collector?
Due to the overhead of calling the garbage collector in the CLR, is it more efficient to leave it, or force to garbage collection when objects go out of scope?
0
votes
8answers
131 views
Is there any significant difference between nesting a while loop in a while loop and nesting an if-else loop in a while loop? (C++)
EDIT: I forgot to add the loop part of the second code.
Looking at the two code styles
while(some_loop_cont_val)
{
while(pre_x is not done)
{
//do action pre_x
}
//do action …
0
votes
5answers
190 views
What language and (possible) web application framework should I use to develop a high traffic web application?
I'm currently in the pre-planning stages of a solo web application development project for university, which has about a year as time constraint. The application will have certain wiki-like features …
0
votes
1answer
56 views
How can I find StackOverflow answers in my search results easier? [closed]
In my every day Google, Yahoo, and Bing searches, how can I better pick out the results that are StackOverflow results? (Sure wish my browser knew I preferred getting StackOverflow results)
6
votes
8answers
220 views
C# File I/O Efficiency
Hi, I have done a homework assignment, here is the problem statement:
Your program should work as follows:
Ask the user to give you a file name. Get the file name and save it.
Open the file.
From …
1
vote
3answers
59 views
Google Page Speed - what do these messages mean?
I ran the Google Page Speed Firefox extension on a few pages, and under "efficient CSS selectors" it listed various things that are inefficient in my CSS.
But some of the messages seem a bit cryptic …
4
votes
6answers
102 views
A more efficient approach to Verbal arithmetic / Alphametics?
Perhaps most of you know the Send + More = Money. Well, I'm currently learning java and one of the exercises is I have to solve HES + THE = BEST.
Now, so far I can/should use if-for-while-do loops, …
0
votes
2answers
41 views
MySQL - large query vs Short query with multiple if’s
This is a really broad question, but I have come across it a couple of times in the last few weeks and I was wondering what the general consensus is regarding good practice and efficiency.
1)
SELECT …
0
votes
5answers
186 views
Tips for speeding up this code
Hiya,
Can anyone suggest tips or alterations to make this code cleaner and faster? This was the only way I could think of doing it on a Friday evening, but I'm sure there must be a more efficient …
4
votes
6answers
261 views
Java: Calculate SHA-256 hash of large file efficiently
I need to calculate a SHA-256 hash of large file (or portion of it). My implementation works fine, but its much slower than the C++'s CryptoPP calculation (25 Min. vs. 10 Min for ~30GB file). What I …
-1
votes
1answer
164 views
Fast algorithms for computing the factorial
I found this page describing a number of algorithms for computing the factorial. Unfortunately, the explanations are terse and I don't feel like sifting through line after line of source code to …
