-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathProgram.cs
60 lines (49 loc) · 1.68 KB
/
Program.cs
1
2
3
4
5
6
7
8
9
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
using System.Collections.Frozen;
using System.Collections.Immutable;
using BenchmarkDotNet.Attributes;
using BenchmarkDotNet.Running;
BenchmarkSwitcher.FromAssembly(typeof(LookupBenchmark).Assembly).Run();
public class LookupBenchmark
{
private const int Iterations = 1000;
private readonly List<int> list = Enumerable.Range(0, Iterations).ToList();
private readonly FrozenSet<int> frozenSet = Enumerable.Range(0, Iterations).ToFrozenSet();
private readonly HashSet<int> hashSet = Enumerable.Range(0, Iterations).ToHashSet();
private readonly ImmutableHashSet<int> immutableHashSet= Enumerable.Range(0, Iterations).ToImmutableHashSet();
[Benchmark(Baseline = true)]
public void LookupList()
{
for (var i = 0; i < Iterations; i++)
_ = list.Contains(i);
}
[Benchmark]
public void LookupFrozen()
{
for (var i = 0; i < Iterations; i++)
_ = frozenSet.Contains(i);
}
[Benchmark]
public void LookupHashSet()
{
for (var i = 0; i < Iterations; i++)
_ = hashSet.Contains(i);
}
[Benchmark]
public void LookupImmutableHashSet()
{
for (var i = 0; i < Iterations; i++)
_ = immutableHashSet.Contains(i);
}
}
public class CreateBenchmark
{
private readonly int[] from = Enumerable.Range(0, 1000).ToArray();
[Benchmark(Baseline = true)]
public List<int> CreateList() => from.ToList();
[Benchmark]
public FrozenSet<int> CreateFrozenList() => from.ToFrozenSet();
[Benchmark]
public HashSet<int> CreateHashSet() => from.ToHashSet();
[Benchmark]
public ImmutableHashSet<int> CreateImmutableHashSet() => from.ToImmutableHashSet();
}