-
Notifications
You must be signed in to change notification settings - Fork 0
/
set_example_test.go
216 lines (180 loc) · 3.79 KB
/
set_example_test.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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
package godino
import (
"fmt"
"sort"
)
func ExampleNewSet() {
set := NewSet(1, 2, 3, 3) // Values are unique
fmt.Println(len(set))
// Output: 3
}
func ExampleSet_Add() {
set := NewSet(1, 2, 3)
set.Add(4)
fmt.Println(set.Has(4))
set.Add(5, 6, 7)
expected := NewSet(1, 2, 3, 4, 5, 6, 7)
fmt.Println(expected.Equals(set))
// Output:
// true
// true
}
func ExampleSet_Clear() {
set := NewSet(1, 2, 3)
set.Clear()
fmt.Println(set.Members())
// Output: []
}
func ExampleSet_Copy() {
set1 := NewSet(1, 2, 3)
set2 := set1.Copy()
fmt.Println(set1.Equals(set2))
// Output: true
}
func ExampleSet_Difference() {
set1 := NewSet(1, 2, 3)
set2 := NewSet(2, 3, 4)
difference := set1.Difference(set2)
expected := NewSet(1)
fmt.Println(difference.Equals(expected))
// Output: true
}
func ExampleSet_DifferenceUpdate() {
set1 := NewSet(1, 2, 3)
set2 := NewSet(2, 3, 4)
set1.DifferenceUpdate(set2)
expected := NewSet(1)
fmt.Println(expected.Equals(set1))
// Output: true
}
func ExampleSet_Discard() {
set := NewSet(1, 2, 3)
set.Discard(1)
fmt.Println(set.Has(1))
// Output: false
}
func ExampleSet_Equals() {
set1 := NewSet(1, 2, 3)
set2 := NewSet(2, 3, 4)
fmt.Println(set1.Equals(set2))
set1.Add(4)
set2.Add(1)
fmt.Println(set1.Equals(set2))
// Output:
// false
// true
}
func ExampleSet_Has() {
set := NewSet(1, 2, 3)
fmt.Println(set.Has(1))
fmt.Println(set.Has(4))
// Output:
// true
// false
}
func ExampleSet_Intersection() {
set1 := NewSet(1, 2, 3)
set2 := NewSet(2, 3, 4)
intersection := set1.Intersection(set2)
expected := NewSet(2, 3)
fmt.Println(intersection.Equals(expected))
// Output: true
}
func ExampleSet_IntersectionUpdate() {
set1 := NewSet(1, 2, 3)
set2 := NewSet(2, 3, 4)
set1.IntersectionUpdate(set2)
expected := NewSet(2, 3)
fmt.Println(set1.Equals(expected))
// Output: true
}
func ExampleSet_IsDisjoint() {
set1 := NewSet(1, 2, 3)
set2 := NewSet(4, 5, 6)
fmt.Println(set1.IsDisjoint(set2))
set1.Add(4)
fmt.Println(set1.IsDisjoint(set2))
// Output:
// true
// false
}
func ExampleSet_IsSubset() {
set1 := NewSet(1, 2, 3)
set2 := NewSet(1, 2, 3, 4)
fmt.Println(set1.IsSubset(set2))
set1.Add(5)
fmt.Println(set1.IsSubset(set2))
// Output:
// true
// false
}
func ExampleSet_IsSuperset() {
set1 := NewSet(1, 2, 3, 4)
set2 := NewSet(2, 3, 4)
fmt.Println(set1.IsSuperset(set2))
set2.Add(5)
fmt.Println(set1.IsSuperset(set2))
// Output:
// true
// false
}
func ExampleSet_Members() {
set := NewSet(1, 2, 3)
members := set.Members()
sortable := sort.IntSlice(members)
sortable.Sort()
fmt.Println(sortable)
// Output: [1 2 3]
}
func ExampleSet_Pop() {
set := NewSet(1)
val, err := set.Pop()
fmt.Println(val, err, len(set))
val2, err2 := set.Pop()
fmt.Println(val2, err2, len(set))
// Output:
// 1 <nil> 0
// 0 cannot pop item from an empty set 0
}
func ExampleSet_Remove() {
set := NewSet(1, 2, 3)
ok := set.Remove(3)
fmt.Println(ok)
fmt.Println(set.Has(3))
ok2 := set.Remove(4)
fmt.Println(ok2)
// Output:
// true
// false
// false
}
func ExampleSet_SymmetricDifference() {
set1 := NewSet(1, 2, 3)
set2 := NewSet(2, 3, 4)
symmetricDifference := set1.SymmetricDifference(set2)
expected := NewSet(1, 4)
fmt.Println(expected.Equals(symmetricDifference))
// Output: true
}
func ExampleSet_SymmetricDifferenceUpdate() {
set1 := NewSet(1, 2, 3)
set2 := NewSet(2, 3, 4)
set1.SymmetricDifferenceUpdate(set2)
expected := NewSet(1, 4)
fmt.Println(expected.Equals(set1))
// Output: true
}
func ExampleSet_Union() {
set1 := NewSet(1, 2, 3)
set2 := NewSet(3, 4, 5)
union := set1.Union(set2)
expected := NewSet(1, 2, 3, 4, 5)
fmt.Println(expected.Equals(union))
}
func ExampleSet_Update() {
set1 := NewSet(1, 2, 3)
set2 := NewSet(3, 4, 5)
set1.Update(set2)
expected := NewSet(1, 2, 3, 4, 5)
fmt.Println(expected.Equals(set1))
}