CSC301: Phone numbers Performance [5/9] Previous pageContentsNext page

file:algs34/XPhoneNumberPerformanceTest.java [source] [doc-public] [doc-private]
01
02
03
04
05
06
07
08
09
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
package algs34;

import stdlib.*;

public class XPhoneNumberPerformanceTest {
  private static int NUM_SIZES = 8;
  private static int START_SIZE = 25000;
  public static void main(String[] args) {
    Object val = new Object ();
    int size = START_SIZE;
    for (int count=1; count<NUM_SIZES; count++) {
      size += size;
      //java.util.IdentityHashMap<XPhoneNumber,Object> set = new java.util.IdentityHashMap <>();
      java.util.HashMap<XPhoneNumber,Object> set = new java.util.HashMap <>();
      //SeparateChainingHashST<XPhoneNumber,Object> set = new SeparateChainingHashST <>();
      //LinearProbingHashST<XPhoneNumber,Object> set = new LinearProbingHashST <>();
      Stopwatch sw1 = new Stopwatch ();
      for (int i=size-1; i>=0; i--) {
        XPhoneNumber x = new XPhoneNumber
          (StdRandom.uniform (1000), StdRandom.uniform (1000), StdRandom.uniform (10000));
        set.put(x,val);
      }
      double time1 = sw1.elapsedTime ();
      Stopwatch sw2 = new Stopwatch ();
//      for (int i=size-1; i>=0; i--) {
//        XPhoneNumber x = new XPhoneNumber
//          (StdRandom.uniform (1000), StdRandom.uniform (1000), StdRandom.uniform (10000));
//        //set.containsKey (x);
//        set.contains (x);
//      }
      double time2 = sw1.elapsedTime ();
      System.out.format ("%9d: add=%f contains=%f\n", size, time1, time2);
    }
  }
}

Previous pageContentsNext page