We will be timing some specific operations and measuring their performance
on the two list implementations. We will then graph the performance
as the data size (n) increases.
We will use System.nanoTime() for time measurement.
System.nanoTime() returns the the number of nanoseconds that
have passed since some fixed but arbituray time. We use this method
to create a "stopwatch". To do this we:
steps
- Prepare the testing data
- Call System.nanoTime() and save the result as the start time.
- Run the tests for many times.
- Call System.nanoTime() again and use the new reading
as the stop time.
- Calculate the avg
The difference between the stop and start times will indicate how
much time has elapsed.
There are some problems that often occur trying to perform timing
measurements of algorithms:
- The timer resolution problem:
Modern computers are (thankfully) blindingly fast. But,
unfortunately, the timer mechanism and the operating systems
scheduler often take more time than the actual operation.
This means that many simple operations appear to take the
the same amount of time, when, in reality, they might just take
so little time that they are difficulty to accurately measure.
- The suspension problem:
Modern computers multitask, have complex memory
caching and virtual memory, and java runs in a virtual machine,
which sometimes optimizes programs in ways that interfere with
the consistency
of time measurements.
All this means that our program may be "stopped" to perform
another
program or task while in the middle of an important
measurement.
Although it is great that the computers give the illusion of
several programs running at once, we would prefer that our
measurements not include the spent playing part of an MP3
or at least that this extra time is negligible compared to what
we are trying to measure.
For now we will design tests and collect multiple samples - we will
start the timer, perform one type of test many times (samples), and
then stop the
timer. We will then know the total time taken for all the samples.
We
can then divide the total time by the number of samples to determine
the
average time per sample. Assuming that we have a large enough sample
size, this will be sufficient to overcome both problems.
ArrayList
Add at the begging of the list
Add at the end of the list
Get the middle element in the array
Position List
Add at the begging of the list
Add at the end of the list
Get the middle elment in the position list
- Read through (but don't yet implement) the following experiments
(note there are THREE of them):
- Experiment #3: Repeat Experiment #2, but add to the end of the list instead of
add to the beginnning by calling ArrayList's add(size(),e) and
DoublyLinkedLists's addLast(e) i time where i is from 1 to 200.