summaryrefslogtreecommitdiff
path: root/lib/slices
diff options
context:
space:
mode:
authorLuke Shumaker <lukeshu@lukeshu.com>2022-07-15 20:27:50 -0600
committerLuke Shumaker <lukeshu@lukeshu.com>2022-07-27 23:33:25 -0600
commit3aed2695a3edfba7c5d95ab86b8854cc1b6dc6a8 (patch)
tree538c108ce8cc44535e3f30d9dabeaa0ff59cee84 /lib/slices
parent7b7968e2f0cff9da2e74100e3f4fbaa2c86f3980 (diff)
add binary search tools to lib/slices
Diffstat (limited to 'lib/slices')
-rw-r--r--lib/slices/sliceutil.go107
1 files changed, 107 insertions, 0 deletions
diff --git a/lib/slices/sliceutil.go b/lib/slices/sliceutil.go
index faaffcb..f95c7e7 100644
--- a/lib/slices/sliceutil.go
+++ b/lib/slices/sliceutil.go
@@ -73,3 +73,110 @@ func Sort[T constraints.Ordered](slice []T) {
return slice[i] < slice[j]
})
}
+
+// returns (a+b)/2, but avoids overflow
+func avg(a, b int) int {
+ return int(uint(a+b) >> 1)
+}
+
+func min(a, b int) int {
+ if a < b {
+ return a
+ }
+ return b
+}
+
+func max(a, b int) int {
+ if a > b {
+ return a
+ }
+ return b
+}
+
+// Search the slice for a value for which `fn(slice[i]) = 0`.
+//
+// + + + 0 0 0 - - -
+// ^ ^ ^
+// any of
+//
+// You can conceptualize `fn` as subtraction:
+//
+// func(straw T) int {
+// return needle - straw
+// }
+func Search[T any](slice []T, fn func(T) int) (int, bool) {
+ beg, end := 0, len(slice)
+ for beg < end {
+ midpoint := avg(beg, end)
+ direction := fn(slice[midpoint])
+ switch {
+ case direction < 0:
+ end = midpoint
+ case direction > 0:
+ beg = midpoint + 1
+ case direction == 0:
+ return midpoint, true
+ }
+ }
+ return 0, false
+}
+
+// Search the slice for the left-most value for which `fn(slice[i]) = 0`.
+//
+// + + + 0 0 0 - - -
+// ^
+//
+// You can conceptualize `fn` as subtraction:
+//
+// func(straw T) int {
+// return needle - straw
+// }
+func SearchLowest[T any](slice []T, fn func(T) int) (int, bool) {
+ lastBad, firstGood, firstBad := -1, len(slice), len(slice)
+ for lastBad+1 < min(firstGood, firstBad) {
+ midpoint := avg(lastBad, min(firstGood, firstBad))
+ direction := fn(slice[midpoint])
+ switch {
+ case direction < 0:
+ firstBad = midpoint
+ case direction > 0:
+ lastBad = midpoint
+ default:
+ firstGood = midpoint
+ }
+ }
+ if firstGood == len(slice) {
+ return 0, false
+ }
+ return firstGood, true
+}
+
+// Search the slice for the right-most value for which `fn(slice[i]) = 0`.
+//
+// + + + 0 0 0 - - -
+// ^
+//
+// You can conceptualize `fn` as subtraction:
+//
+// func(straw T) int {
+// return needle - straw
+// }
+func SearchHighest[T any](slice []T, fn func(T) int) (int, bool) {
+ lastBad, lastGood, firstBad := -1, -1, len(slice)
+ for max(lastBad, lastGood)+1 < firstBad {
+ midpoint := avg(max(lastBad, lastGood), firstBad)
+ direction := fn(slice[midpoint])
+ switch {
+ case direction < 0:
+ firstBad = midpoint
+ case direction > 0:
+ lastBad = midpoint
+ default:
+ lastGood = midpoint
+ }
+ }
+ if lastGood < 0 {
+ return 0, false
+ }
+ return lastGood, true
+}