Tagged Questions
12
votes
4answers
7k views
What is the best way to measure execution time of a function?
Obviously I can do and DateTime.Now.After - DateTime.Now.Before but there must be something more sophisticated.
Any tips appreciated.
10
votes
11answers
613 views
What is considered a long execution time?
I am trying to figure out just how "efficient" my server-side code is.
Using start and end microtime(true) values, I am able to calculate the time it took my script to run.
I am getting times from ...
4
votes
4answers
304 views
Java anonymous class efficiency implications
Is there any difference in efficiency (e.g. execution time, code size, etc.) between these two ways of doing things?
Below are contrived examples that create objects and do nothing, but my actual ...
4
votes
5answers
665 views
C# 2.0 Execution Time Timer
I would like to be able to calculate the amount of time a number of functions take to execute. I was thinking about using some type of stopwatch class. I can call start/stop before and after each ...
3
votes
5answers
559 views
Compilation and execution time of C++ vs C source code
I am not sure if this is a valid comparison or a valid statement but over the years I have heard folks claiming that the programs written in C++ generally take a longer time for compilation than the ...
2
votes
2answers
67 views
When f(n) = n^.1 and g(n) = log(n)^10, does f(n) = Ω(g)?
I was told that "any exponential trumps any logarithm".
But when the exponential is between zero and one, doesn't the execution time of the logarithm grow much faster? So by that logic it would be f ...
1
vote
2answers
100 views
What is the largest size n of a problem that can be solved in one second, assuming the problem takes f(n) microseconds?
I have this question:
f(n) = log(n) (it's log base 2 btw)
What is the largest size n of a problem that can be solved in one second, assuming the problem takes f(n) microseconds?
Well since f(n) is ...
0
votes
1answer
34 views
Tsql: what is the best way to retrieve some records with a specific criteria?
I have a table (Cars) which saves some characteristics car like EngineNo, LastProductionStepId, NodyNo, ...
Besides, I have another table (CarSteps) which saves all steps that a specific car should ...