Is there anything in Java that would allow me to take a code snippit and allow me to see exactly how many "ticks" it takes to execute. I want to prove that an algorithm I wrote is faster than another.
feedback
|
|
"Ticks"? No. I'd recommend that you run them several times each and compare the average results:
| |||||||||||
feedback
|
|
You could use
| |||||||||||
feedback
|
|
You can measure wall time with System.currentTimeMillis() or System.nanoTime() (which have different characteristics). This is relatively easy as you just have to print out the differences at the end. If you need to count specific operations (which is common in algorithms), the easiest is to simply increment a counter when the operations are being done , and then print it when you are done. | |||
|
feedback
|
|
I had to do this algorithm efficiency proofs mostly on my Data Structures lesson this year. First,I measured the time like they mentioned upper. Then I increased the method's input number with squaring each time(10,100,1000,...) Lastly,I put the time measurements in an Excel file and drawed graphics for these time values. By this way,you can check if one algorithm is faster than other or not,slightly. | |||
|
feedback
|
|
I am not too familiar with the Java Framework but i would do it the following way:
| |||
|
feedback
|
|
I would:
Timing the algorithm is not necessarily everything - would memory footprint be important as well? One algorithm might be better computationally but it might create more objects while it runs.. etc. Just trying to point out there is more to consider than purely timing! | |||
|
feedback
|
|
If both algorithms have the same definition of a macro-level "tick" (e.g. walking one node in a tree) and your goal is to prove that your algorithm accomplishes its goal in a lower number of those macro-level ticks than the other, then by far the best way is to just instrument each implementation to count those ticks. That approach is ideal because it doesn't reward low-level implementation tricks that can make code execute faster but are not algorithm-related. If you don't have that luxury, but you are trying to calculate which approach solves the problem using the least amount of CPU resources, contrary to the approaches listed here involving System.currentTimeMillis etc, I would use an external approach: the linux time command would be ideal. You have each program run on the same set of (large) inputs, preferably that take on the order of minutes or hours to process, and just run | |||
|
feedback
|
|
You probably are asking two different questions:
For the first of these I wouldn't use the solutions posted here. They are mostly not quite right. Forst, its probably better to use
Getting benchmarking correct is hard. For example, you must let your code "warmup"" for a few minutes before testing it. Benchmark early and often, but dont over believe your benchmarks. Particularly small micro benchmarks almost always lie in one way or another. The second way to interpret your question is about asymptotic run times. The truth is this has almost nothing to do with Java, it is general computer science. Here the question we want to ask is: what curves describe the behavior of the run time of our algorithm in terms of the input size. The first thing is to understand Big-Oh notation. I'll do my best, but SO doesn't support math notation. Well, it gets a little more complicated because we can talk about different kinds of run time, ie "average case", best case, and worst case. For example, normall quicksort is So I skipped over what Proving asymptotic bounds isn't that hard. For simple structured programming problems you just count
In this example we have one instruction each for: initializing sum, initializing i, and returning the value. The loop happens When you are faced with a recursive function you have to solve a recurrence relation. If you have a function like
As we saw earlier you can simplify More often though you can use the master theorem which is a mathematical tool for saving you time on this kind of problem. If you check wikipedia you can find the master theorem, which if you plug and play the example above you get the same answer. For more, check out an algorithms text book like Levitin's "The Design & Analysis of Algorithms" | ||||
|
feedback
|