- evaluateAll(SetTesterADT<Integer>) - Method in class SetTesterMain
-
The evaluation method runs the trials and stores the results for
these operations:
the time to build the Integer data structure (add all items)
the time to search for individual items in the data structure
the time to search for all items within a given range of values
The number of trials has been stored as a data field.
- evaluateBuild(SetTesterADT<Integer>) - Method in class SetTesterMain
-
Evaluate the building tree process.
- evaluateContainsSearch(SetTesterADT<Integer>) - Method in class SetTesterMain
-
Run a single trial that times and searches for each item in the original
data listing.
- evaluateRangeSearch(SetTesterADT<Integer>) - Method in class SetTesterMain
-
Time how long it take to search for items within a given range
from each element.