-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathcmp.go
482 lines (427 loc) · 12.2 KB
/
cmp.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
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
package villa
import "sort"
// CmpFunc is a function comparing two elements. The function returns a positive
// value if a > b, a negative value if a < b, and 0 otherwise.
//
// Sort, BinarySearch and Merge methods are defined.
// Usage:
// s := []interface{}{...}
// cmp := CmpFunc(func (a, b interface{}) int {
// if a.(int) < b.(int) {
// return -1
// } else if a.(int) > b.(int) {
// return 1
// } // else if
// return 0
// })
// cmp.Sort(s)
// p, found := cmp.BinarySearch(s, e)
//
// l := []interface{}{...}
// cmp.Sort(l)
// t := cmp.Merge(s, l)
type CmpFunc func(a, b interface{}) int
// Merge merges the current *sorted* elements with another *sorted* slice of
// elements. All elements should be sorted by the same comparator.
func (cmp CmpFunc) Merge(a, b []interface{}) []interface{} {
na, nb := len(a), len(b)
res := make([]interface{}, na+nb)
for k, l, m := 0, 0, 0; l < na || m < nb; k++ {
if m >= nb || l < na && cmp(a[l], b[m]) <= 0 {
res[k] = a[l]
l++
} else {
res[k] = b[m]
m++
} // else
} // for l, m, k
return res
}
// BinarySearch searchs a specified element e in a *sorted* list with binary
// search algorithm. If the list values are not sorted, the return values are
// undefined.
//
// If the element is found in the list, found equals true and pos is the index
// of the found element in the list. Otherwise found returns false and pos is
// the position where e is going to be inserted(and the resulting list is still
// in order)
func (cmp CmpFunc) BinarySearch(s []interface{}, e interface{}) (pos int, found bool) {
l, r := 0, len(s)-1
for l <= r {
m := l + (r-l)/2
c := cmp(e, s[m])
if c == 0 {
return m, true
} // if
if c < 0 {
r = m - 1
} else {
l = m + 1
} // else
} // for
return l, false
}
type sortList struct {
Slice
cmp CmpFunc
}
// The Len method in sort.Interface.
func (s *sortList) Len() int {
return len(s.Slice)
}
// The Less method in sort.Interface
func (s *sortList) Less(i, j int) bool {
return s.cmp(s.Slice[i], s.Slice[j]) < 0
}
// Sort calls the build-in sort.Sort to sort data in the slice.
func (cmp CmpFunc) Sort(s []interface{}) {
sort.Sort(&sortList{Slice(s), cmp})
}
// StrCmpFunc is a function comparing two string elements. The function returns
// a positive value if a > b, a negative value if a < b, and 0 otherwise.
//
// Sort, BinarySearch and Merge methods are defined.
// Usage:
// s := []string{}{...}
// cmp := CmpFunc(func (a, b string) int {
// if a < b {
// return -1
// } else if a > b {
// return 1
// } // else if
// return 0
// })
// cmp.Sort(s)
// p, found := cmp.BinarySearch(s, e)
//
// l := []string{}{...}
// cmp.Sort(l)
// t := cmp.Merge(s, l)
type StrCmpFunc func(a, b string) int
// Merge merges the current *sorted* elements with another *sorted* slice of
// elements.
//
// All elements should be sorted by the same comparator.
func (cmp StrCmpFunc) Merge(a, b []string) []string {
na, nb := len(a), len(b)
res := make([]string, na+nb)
for k, l, m := 0, 0, 0; l < na || m < nb; k++ {
if m >= nb || l < na && cmp(a[l], b[m]) <= 0 {
res[k] = a[l]
l++
} else {
res[k] = b[m]
m++
}
}
return res
}
// BinarySearch searchs a specified element e in a *sorted* list with binary
// search algorithm. If the list values are not sorted, the return values are
// undefined.
//
// If the element is found in the list, found equals true and pos is the index
// of the found element in the list. Otherwise found returns false and pos is
// the position where e is going to be inserted(and the resulting list is still
// in order)
func (cmp StrCmpFunc) BinarySearch(s []string, e string) (pos int, found bool) {
l, r := 0, len(s)-1
for l <= r {
m := l + (r-l)/2
c := cmp(e, s[m])
if c == 0 {
return m, true
} // if
if c < 0 {
r = m - 1
} else {
l = m + 1
} // else
} // for
return l, false
}
// DiffSlicePair compares two sorted slices, returns the difference of each
// relative to the other.
func (cmp StrCmpFunc) DiffSlicePair(s1, s2 []string) (d1, d2 []string) {
i, j := 0, 0
for i < len(s1) && j < len(s2) {
switch cmp(s1[i], s2[j]) {
case -1:
d1 = append(d1, s1[i])
i++
case 1:
d2 = append(d2, s2[j])
j++
default:
i++
j++
}
}
if i < len(s1) {
d1 = append(d1, s1[i:]...)
} else {
d2 = append(d2, s2[j:]...)
}
return d1, d2
}
type strSortList struct {
StringSlice
cmp StrCmpFunc
}
// The Len method in sort.Interface.
func (s *strSortList) Len() int {
return len(s.StringSlice)
}
// The Less method in sort.Interface
func (s *strSortList) Less(i, j int) bool {
return s.cmp(s.StringSlice[i], s.StringSlice[j]) < 0
}
// Sort calls the build-in sort.Sort to sort data in the slice.
func (cmp StrCmpFunc) Sort(s []string) {
sort.Sort(&strSortList{StringSlice(s), cmp})
}
// IntCmpFunc is a function comparing two int elements. The function returns a positive value if a > b, a negative value if a < b, and 0 otherwise.
//
// Sort, BinarySearch and Merge methods are defined.
// Usage:
// s := []int{}{...}
// cmp := CmpFunc(func (a, b int) int {
// if a < b {
// return -1
// } else if a > b {
// return 1
// } // else if
// return 0
// })
// cmp.Sort(s)
// p, found := cmp.BinarySearch(s, e)
//
// l := []int{}{...}
// cmp.Sort(l)
// t := cmp.Merge(s, l)
type IntCmpFunc func(a, b int) int
// Merge merges the current *sorted* elements with another *sorted* slice of elements.
// All elements should be sorted by the same comparator.
func (cmp IntCmpFunc) Merge(a, b []int) []int {
na, nb := len(a), len(b)
res := make([]int, na+nb)
for k, l, m := 0, 0, 0; l < na || m < nb; k++ {
if m >= nb || l < na && cmp(a[l], b[m]) <= 0 {
res[k] = a[l]
l++
} else {
res[k] = b[m]
m++
} // else
} // for l, m, k
return res
}
// BinarySearch searchs a specified element e in a *sorted* list with binary search algorithm. If the list values are not sorted, the return values are undefined.
// If the element is found in the list, found equals true and pos is the index of the found element in the list.
// Otherwise found returns false and pos is the position where e is going to be inserted(and the resulting list is still in order)
func (cmp IntCmpFunc) BinarySearch(s []int, e int) (pos int, found bool) {
l, r := 0, len(s)-1
for l <= r {
m := l + (r-l)/2
c := cmp(e, s[m])
if c == 0 {
return m, true
} // if
if c < 0 {
r = m - 1
} else {
l = m + 1
} // else
} // for
return l, false
}
type intSortList struct {
IntSlice
cmp IntCmpFunc
}
// The Len method in sort.Interface.
func (s *intSortList) Len() int {
return len(s.IntSlice)
}
// The Less method in sort.Interface
func (s *intSortList) Less(i, j int) bool {
return s.cmp(s.IntSlice[i], s.IntSlice[j]) < 0
}
// Sort calls the build-in sort.Sort to sort data in the slice.
func (cmp IntCmpFunc) Sort(s []int) {
sort.Sort(&intSortList{IntSlice(s), cmp})
}
// FloatCmpFunc is a function comparing two float elements. The function returns a positive value if a > b, a negative value if a < b, and 0 otherwise.
//
// Sort, BinarySearch and Merge methods are defined.
// Usage:
// s := []float64{}{...}
// cmp := CmpFunc(func (a, b float64) int {
// if a < b {
// return -1
// } else if a > b {
// return 1
// } // else if
// return 0
// })
// cmp.Sort(s)
// p, found := cmp.BinarySearch(s, e)
//
// l := []float64{}{...}
// cmp.Sort(l)
// t := cmp.Merge(s, l)
type FloatCmpFunc func(a, b float64) int
// Merge merges the current *sorted* elements with another *sorted* slice of elements.
// All elements should be sorted by the same comparator.
func (cmp FloatCmpFunc) Merge(a, b []float64) []float64 {
na, nb := len(a), len(b)
res := make([]float64, na+nb)
for k, l, m := 0, 0, 0; l < na || m < nb; k++ {
if m >= nb || l < na && cmp(a[l], b[m]) <= 0 {
res[k] = a[l]
l++
} else {
res[k] = b[m]
m++
} // else
} // for l, m, k
return res
}
// BinarySearch searchs a specified element e in a *sorted* list with binary search algorithm. If the list values are not sorted, the return values are undefined.
// If the element is found in the list, found equals true and pos is the index of the found element in the list.
// Otherwise found returns false and pos is the position where e is going to be inserted(and the resulting list is still in order)
func (cmp FloatCmpFunc) BinarySearch(s []float64, e float64) (pos int, found bool) {
l, r := 0, len(s)-1
for l <= r {
m := l + (r-l)/2
c := cmp(e, s[m])
if c == 0 {
return m, true
} // if
if c < 0 {
r = m - 1
} else {
l = m + 1
} // else
} // for
return l, false
}
type floatSortList struct {
FloatSlice
cmp FloatCmpFunc
}
// The Len method in sort.Interface.
func (s *floatSortList) Len() int {
return len(s.FloatSlice)
}
// The Less method in sort.Interface
func (s *floatSortList) Less(i, j int) bool {
return s.cmp(s.FloatSlice[i], s.FloatSlice[j]) < 0
}
// Sort calls the build-in sort.Sort to sort data in the slice.
func (cmp FloatCmpFunc) Sort(s []float64) {
sort.Sort(&floatSortList{FloatSlice(s), cmp})
}
// ComplexCmpFunc is a function comparing two complex128 elements. The function returns a positive value if a > b, a negative value if a < b, and 0 otherwise.
//
// Sort, BinarySearch and Merge methods are defined.
// Usage:
// s := []complex128{}{...}
// cmp := CmpFunc(func (a, b complex128) int {
// if cmplx.Abs(a) < cmplx.Abs(b) {
// return -1
// } else if cmplx.Abs(a) > cmplx.Abs(b) {
// return 1
// } // else if
// return 0
// })
// cmp.Sort(s)
// p, found := cmp.BinarySearch(s, e)
//
// l := []complex128{}{...}
// cmp.Sort(l)
// t := cmp.Merge(s, l)
type ComplexCmpFunc func(a, b complex128) int
func (cmp ComplexCmpFunc) Merge(a, b []complex128) []complex128 {
na, nb := len(a), len(b)
res := make([]complex128, na+nb)
for k, l, m := 0, 0, 0; l < na || m < nb; k++ {
if m >= nb || l < na && cmp(a[l], b[m]) <= 0 {
res[k] = a[l]
l++
} else {
res[k] = b[m]
m++
} // else
} // for l, m, k
return res
}
// BinarySearch searchs a specified element e in a *sorted* list with binary search algorithm. If the list values are not sorted, the return values are undefined.
// If the element is found in the list, found equals true and pos is the index of the found element in the list.
// Otherwise found returns false and pos is the position where e is going to be inserted(and the resulting list is still in order)
func (cmp ComplexCmpFunc) BinarySearch(s []complex128, e complex128) (pos int, found bool) {
l, r := 0, len(s)-1
for l <= r {
m := l + (r-l)/2
c := cmp(e, s[m])
if c == 0 {
return m, true
} // if
if c < 0 {
r = m - 1
} else {
l = m + 1
} // else
} // for
return l, false
}
type complexSortList struct {
ComplexSlice
cmp ComplexCmpFunc
}
// The Len method in sort.Interface.
func (s *complexSortList) Len() int {
return len(s.ComplexSlice)
}
// The Less method in sort.Interface
func (s *complexSortList) Less(i, j int) bool {
return s.cmp(s.ComplexSlice[i], s.ComplexSlice[j]) < 0
}
// Sort calls the build-in sort.Sort to sort data in the slice.
func (cmp ComplexCmpFunc) Sort(s []complex128) {
sort.Sort(&complexSortList{ComplexSlice(s), cmp})
}
var (
// StrValueCompare compares the input strings a and b, returns -1 if a < b,
// 1 if a > b, and 0 otherwise.
//
// This is a natural StrCmpFunc.
StrValueCompare = StrCmpFunc(func(a, b string) int {
if a < b {
return -1
} else if a > b {
return 1
} // else if
return 0
})
// IntValueCompare compares the input int values a and b, returns -1 if a < b, 1 if a > b, and 0 otherwise.
// This is a natural IntCmpFunc.
IntValueCompare = IntCmpFunc(func(a, b int) int {
if a < b {
return -1
} else if a > b {
return 1
} // else if
return 0
})
// FloatValueCompare compares the input float64 values a and b, returns -1 if a < b, 1 if a > b, and 0 otherwise.
// This is a natural FloatCmpFunc.
FloatValueCompare = FloatCmpFunc(func(a, b float64) int {
if a < b {
return -1
} else if a > b {
return 1
} // else if
return 0
})
)