summaryrefslogtreecommitdiffstats
path: root/src/de/fhswf/in/inf/java1/aufgabe6/ListBenchmark.java
diff options
context:
space:
mode:
authorStefan Suhren <suhren.stefan@fh-swf.de>2014-11-05 00:55:06 +0100
committerStefan Suhren <suhren.stefan@fh-swf.de>2014-11-05 00:55:06 +0100
commited5ad940a99e7e6386caa85fd01588a64220fa22 (patch)
tree5b48a38a92a23258d6fcf4bcd71a1d76de244724 /src/de/fhswf/in/inf/java1/aufgabe6/ListBenchmark.java
parentcbfcc3df88e229a81da783e258a0b8860404fe1a (diff)
downloadJava1-ed5ad940a99e7e6386caa85fd01588a64220fa22.tar.gz
Java1-ed5ad940a99e7e6386caa85fd01588a64220fa22.zip
Assignment No.6 added first version
Diffstat (limited to 'src/de/fhswf/in/inf/java1/aufgabe6/ListBenchmark.java')
-rw-r--r--src/de/fhswf/in/inf/java1/aufgabe6/ListBenchmark.java102
1 files changed, 102 insertions, 0 deletions
diff --git a/src/de/fhswf/in/inf/java1/aufgabe6/ListBenchmark.java b/src/de/fhswf/in/inf/java1/aufgabe6/ListBenchmark.java
new file mode 100644
index 0000000..a98cdd6
--- /dev/null
+++ b/src/de/fhswf/in/inf/java1/aufgabe6/ListBenchmark.java
@@ -0,0 +1,102 @@
+/**
+ *
+ */
+package de.fhswf.in.inf.java1.aufgabe6;
+
+import java.util.List;
+import java.util.Random;
+
+/**
+ * TODO Add comment here
+ *
+ * @author $Author: $
+ * @version $Revision: $, $Date: $ UTC
+ */
+public final class ListBenchmark
+{
+
+ private final Integer testObj = new Integer(214);
+
+ /**
+ * Prevents instantiation of the utility class.
+ *
+ */
+ private ListBenchmark()
+ {
+ }
+
+ /**
+ * Starts a benchmark of different Lists and different test cases.
+ *
+ */
+ public void startBenchmark()
+ {
+
+ }
+
+ /**
+ * TODO Add method comment here
+ *
+ * @param list
+ * @param times
+ * @return
+ */
+ private long benchmarkAtBeginning(List<Integer> list, int times)
+ {
+ long start = System.currentTimeMillis(); // Gets current time in µs
+
+ for (int i = 0; i < times; i++)
+ {
+ list.add(0, testObj);
+ }
+
+ return (System.currentTimeMillis() - start); // Returns runtime
+ }
+
+ /**
+ * TODO Add method comment here
+ *
+ * @param list
+ * @param times
+ * @return
+ */
+ private long benchmarkAtEnding(List<Integer> list, int times)
+ {
+ long start = System.currentTimeMillis(); // Gets current time in µs
+
+ for (int i = 0; i < times; i++)
+ {
+ list.add(testObj);
+ }
+
+ return (System.currentTimeMillis() - start); // Returns runtime
+ }
+
+ /**
+ * TODO Add method comment here
+ *
+ * @param list
+ * @param times
+ * @return
+ */
+ private long benchmarkAtRandom(List<Integer> list, int times)
+ {
+
+ int[] randVal = new int[times];
+ Random rand = new Random();
+
+ for (int i = 0; i < randVal.length; i++)
+ {
+ randVal[i] = rand.nextInt(list.size()+i+1);
+ }
+
+ long start = System.currentTimeMillis(); // Gets current time in µs
+
+ for (int i = 0; i < times; i++)
+ {
+ list.add(randVal[i], testObj);
+ }
+
+ return (System.currentTimeMillis() - start); // Returns runtime
+ }
+}