package
0.0.0-20240611155925-ec252d0ef534
Repository: https://github.com/andrewhowdencom/x40.link.git
Documentation: pkg.go.dev

# Functions

NewBinarySearch initializes a binary search object with its own properties initialized.
NewHashTable initializes a new hash table, with the appropriate default values.
NewLinearSearch implements the most naive approach to querying data.

# Structs

BinarySearch is an implementation of the search of a (sorted) data set that has much better performance than the linear search, on average.
HashTable stores the entire dataset within Go's implementation of a hash table (a map).
LinearSearch is an implementation of "worst case" search through the data.