aspose file tools
The moose likes Beginning Java and the fly likes Run-Time of the algorithm.. Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login
JavaRanch » Java Forums » Java » Beginning Java
Reply Bookmark "Run-Time of the algorithm.." Watch "Run-Time of the algorithm.." New topic
Author

Run-Time of the algorithm..

Steve De Costa
Ranch Hand

Joined: Jun 04, 2007
Posts: 33
I've written some code/algorithm and I'm trying to check its run-time.

Any idea if there is an effective way of doing it?

The only thing I could think of was putting my algorithm between the following two lines


System.out.println(System.currentTimeMillis());
//...then the piece of code goes here...
System.out.println(System.currentTimeMillis());
Campbell Ritchie
Sheriff

Joined: Oct 13, 2005
Posts: 32633
    
    4
You may prefer to use the System method which gets time in nanoseconds, called something like nanoTime() (look in the API for the correct spelling).Also note how long it takes to run when there is no code between the two nanoTime calls. Note that timings vary quite a bit on successive runs, even when everything else appears unchanged.
 
I agree. Here's the link: http://ej-technologies/jprofiler - if it wasn't for jprofiler, we would need to run our stuff on 16 servers instead of 3.
 
subject: Run-Time of the algorithm..
 
Similar Threads
Calculationg execution time
ArrayList
for loop optimization
Multi Threading
I want to Read and copy 800 MB file. Any efficient way.