You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+3Lines changed: 3 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -8,6 +8,8 @@ Its written and tested using Node.js which is also the target platform.
8
8
9
9
Overview
10
10
----------------
11
+
* <h3>New</h3>
12
+
* <h4>[Bloom Filter](http://monmohan.github.io/dsjslib/BloomFilter.html)</h4> - Probabilistic data structure to test whether an element is a member of a set.
11
13
12
14
* <h3>Maps</h3>
13
15
* <h4>Sorted Maps</h4> Maps sorted according to natural ordering of keys or by comparator function provided at creation time.
@@ -40,6 +42,7 @@ Overview
40
42
* <h4>[BitSet](http://monmohan.github.io/dsjslib/BitSet.html)</h4> - An array of bits with operations to set, examine and clear individual bits
41
43
* <h4>[CircularBuffer](http://monmohan.github.io/dsjslib/CircularBuffer.html)</h4> - A data structure that uses a single, fixed-size buffer as if it were connected end-to-end.
42
44
When the buffer is filled, new data is written starting at the beginning of the buffer and overwriting the old.
45
+
* <h4>[Bloom Filter](http://monmohan.github.io/dsjslib/BloomFilter.html)</h4> - Probabilistic data structure to test whether an element is a member of a set.
43
46
* <h4>[BTree](http://monmohan.github.io/dsjslib/BTree.html)</h4> - Self balancing generalized Search Tree
0 commit comments