1120
Comment:
|
1603
|
Deletions are marked like this. | Additions are marked like this. |
Line 3: | Line 3: |
= Results for Exercise Sheet 3 (list intersection) = | = Results for Exercise Sheet 3 (List Intersection) = |
Line 7: | Line 7: |
Add your row to the table below, following the examples already there. Simple = the simple linear-time algorithm. ExpBin = the asymptotically optimal exponential-binary-search algorithm. R = the ratio of the list length. The sum of the two list lengths should be 250M in both cases, as described on the exercise sheet. Provide the query times in seconds (s) please, with *exactly* one digit after the dot. Provide your machine specs in the same way as the examples already there. In particular, specify the processor frequency with exactly one digit after the dot, the amount of RAM as an integer, and don't provide secondary details about the processor. | Add your row to the table below, following the examples already there. Simple = the simple linear-time algorithm. !ExpBin = the asymptotically optimal exponential-binary-search algorithm. R = the ratio of the list length. The sum of the two list lengths should be N=250M in both cases (so 1/(R+1)*N for the smaller list, and R/(R+1)*N for the larger list). Provide the query times in seconds (s) please, with ''exactly'' two digits after the dot. Provide your machine specs in the same way as the examples already there. In particular, specify the processor frequency with exactly one digit after the dot, the amount of RAM as an integer, and don't provide secondary details about the processor. |
Line 9: | Line 9: |
||'''Name''' ||'''Simple, R = 1''' ||'''ExpBin, R = 1''' ||'''Simple, R = 10''' ||'''ExpBin, R = 10''' ||'''Processor / RAM''' ||'''Language''' || ||Dick ||1.0s ||1.4s ||1.0s ||0.8s ||Intel X5560 @ 2.8Ghz / 96 GB ||C++ || ||Doof ||2.0s ||2.8s ||2.0s ||1.6s ||Intel P8600 @ 2.4Ghz / 4 GB ||Java || |
||'''Name''' ||'''Simple, R = 5''' ||'''!ExpBin, R = 5''' ||'''Simple, R = 50''' ||'''!ExpBin, R = 50''' ||'''Processor / RAM''' ||'''Language''' || ||Florian B ||0.58s ||0.95s ||0.33s ||0.15s ||Intel X5560 @ 2.8GHz / 36GB ||Java || ||Simon S ||0.43s ||0.53s ||0.27s ||0.13s ||Intel X5560 @ 2.8GHz / 36GB ||C++ || ||Adrian + Susi ||0.21s ||0.36s ||0.18s ||0.08s ||i5 3570K @ 3.4GHz / 8GB ||C++ || ||Simon P ||2.53s ||2.83s ||0.80s ||0.71s ||i3 380UM @ 1.3GHz / 4GB ||Java || ||Philipp L ||1.08s ||1.09s ||0.57s ||0.26s ||Phenom II X4 955 @ 3.2GHz / 6GB ||Java || ||Nikolaus M ||0.25 s||0.46s ||0.03s ||0.05s ||i3 3220 @ 3.3GHz / 8GB ||C++ || ||Anton S ||0.35 s||0.39s ||0.25s ||0.1s ||VM: 2cores: i5 3570K @ 3.4GHz / 4.9GB ||C++ || |
Results for Exercise Sheet 3 (List Intersection)
Please read the instructions below, before adding something to the table!
Add your row to the table below, following the examples already there. Simple = the simple linear-time algorithm. ExpBin = the asymptotically optimal exponential-binary-search algorithm. R = the ratio of the list length. The sum of the two list lengths should be N=250M in both cases (so 1/(R+1)*N for the smaller list, and R/(R+1)*N for the larger list). Provide the query times in seconds (s) please, with exactly two digits after the dot. Provide your machine specs in the same way as the examples already there. In particular, specify the processor frequency with exactly one digit after the dot, the amount of RAM as an integer, and don't provide secondary details about the processor.
Name |
Simple, R = 5 |
ExpBin, R = 5 |
Simple, R = 50 |
ExpBin, R = 50 |
Processor / RAM |
Language |
Florian B |
0.58s |
0.95s |
0.33s |
0.15s |
Intel X5560 @ 2.8GHz / 36GB |
Java |
Simon S |
0.43s |
0.53s |
0.27s |
0.13s |
Intel X5560 @ 2.8GHz / 36GB |
C++ |
Adrian + Susi |
0.21s |
0.36s |
0.18s |
0.08s |
i5 3570K @ 3.4GHz / 8GB |
C++ |
Simon P |
2.53s |
2.83s |
0.80s |
0.71s |
i3 380UM @ 1.3GHz / 4GB |
Java |
Philipp L |
1.08s |
1.09s |
0.57s |
0.26s |
Phenom II X4 955 @ 3.2GHz / 6GB |
Java |
Nikolaus M |
0.25 s |
0.46s |
0.03s |
0.05s |
i3 3220 @ 3.3GHz / 8GB |
C++ |
Anton S |
0.35 s |
0.39s |
0.25s |
0.1s |
VM: 2cores: i5 3570K @ 3.4GHz / 4.9GB |
C++ |