-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathjoin3.go
89 lines (74 loc) · 1.65 KB
/
join3.go
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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
package sparseset
type Join3Iterator[A, B, C any] struct {
get func() (int, *A, *B, *C, bool)
}
func (i *Join3Iterator[A, B, C]) Next() (int, *A, *B, *C, bool) {
return i.get()
}
func Join3[A, B, C any](set1 *Set[A], set2 *Set[B], set3 *Set[C]) *Join3Iterator[A, B, C] {
var get func() (int, *A, *B, *C, bool)
if len(set1.dense) <= len(set2.dense) && len(set1.dense) <= len(set3.dense) {
iterator := Iterate(set1)
get = func() (int, *A, *B, *C, bool) {
for {
key, a, ok := iterator.Next()
if !ok {
return 0, nil, nil, nil, false
}
b, ok := set2.Get(key)
if !ok {
continue
}
c, ok := set3.Get(key)
if !ok {
continue
}
return key, a, b, c, true
}
}
} else if len(set2.dense) <= len(set1.dense) && len(set2.dense) <= len(set3.dense) {
iterator := Iterate(set2)
get = func() (int, *A, *B, *C, bool) {
for {
key, b, ok := iterator.Next()
if !ok {
return 0, nil, nil, nil, false
}
a, ok := set1.Get(key)
if !ok {
continue
}
c, ok := set3.Get(key)
if !ok {
continue
}
return key, a, b, c, true
}
}
} else {
iterator := Iterate(set3)
get = func() (int, *A, *B, *C, bool) {
for {
key, c, ok := iterator.Next()
if !ok {
return 0, nil, nil, nil, false
}
a, ok := set1.Get(key)
if !ok {
continue
}
b, ok := set2.Get(key)
if !ok {
continue
}
return key, a, b, c, true
}
}
}
return &Join3Iterator[A, B, C]{get}
}
func EmptyJoin3Iterator[A, B, C any]() *Join3Iterator[A, B, C] {
return &Join3Iterator[A, B, C]{func() (int, *A, *B, *C, bool) {
return 0, nil, nil, nil, false
}}
}