Skip to content

Commit 849309c

Browse files
committed
Add note about Hasher in README.
* Adds a section about another Bloom filter approach, using only a single hashing function with Swift 4.2's `Hasher`. * Adds links to some more documentation and a blog post implementing the Bloom filter in this way. * Adds my name as updater.
1 parent 4201fb4 commit 849309c

File tree

1 file changed

+26
-1
lines changed

1 file changed

+26
-1
lines changed

Bloom Filter/README.markdown

+26-1
Original file line numberDiff line numberDiff line change
@@ -100,4 +100,29 @@ public func query(_ value: T) -> Bool {
100100

101101
If you're coming from another imperative language, you might notice the unusual syntax in the `exists` assignment. Swift makes use of functional paradigms when it makes code more consise and readable, and in this case `reduce` is a much more consise way to check if all the required bits are `true` than a `for` loop.
102102

103-
*Written for Swift Algorithm Club by Jamil Dhanani. Edited by Matthijs Hollemans.*
103+
## Another approach
104+
105+
Another approach to create different hashes of an element for use in the Bloom filter, is to use the same hash function for every iteration, but combine it with different random numbers. This can help, because finding good hashing functions is hard, but combining them is equally non-trivial.
106+
107+
```
108+
hash("Hello world!") >> hash(987654321) // would flip bit 8
109+
hash("Hello world!") >> hash(123456789) // would flip bit 2
110+
```
111+
112+
Since Swift 4.2, `Hasher` is now included in the Standard library, which is designed to reduce multiple hashes to a single hash in an efficient manner. This makes combining the hashes trivial.
113+
114+
```
115+
private func computeHashes(_ value: T) -> [Int] {
116+
return randomSeeds.map() { seed in
117+
let hasher = Hasher()
118+
hasher.combine(seed)
119+
hasher.combine(value)
120+
let hashValue = hasher.finalize()
121+
return abs(hashValue % array.count)
122+
}
123+
}
124+
```
125+
126+
If you want to learn more about this approach, you can read about the [Hasher documentation](https://developer.apple.com/documentation/swift/hasher) or Soroush Khanlou's [Swift 4.2 Bloom filter](http://khanlou.com/2018/09/bloom-filters/) implementation.
127+
128+
*Written for Swift Algorithm Club by Jamil Dhanani. Edited by Matthijs Hollemans. Updated by Bruno Scheele.*

0 commit comments

Comments
 (0)