File tree Expand file tree Collapse file tree 4 files changed +5
-6
lines changed Expand file tree Collapse file tree 4 files changed +5
-6
lines changed Original file line number Diff line number Diff line change @@ -22,7 +22,6 @@ be done in a single clock cycle (not counting the time it takes to convert)
2222the resultant array back into integers). When Go implements a command
2323to get trailing zeroes, the reconversion back into integers should be much faster.
2424*/
25-
2625package bitarray
2726
2827// BitArray represents a structure that can be used to
Original file line number Diff line number Diff line change 1818//
1919// This performance could be further enhanced by using a
2020// better probing technique.
21-
2221package fastinteger
2322
2423const ratio = .75 // ratio sets the capacity the hashmap has to be at before it expands
Original file line number Diff line number Diff line change @@ -20,7 +20,6 @@ I found myself needing a lock to protect writing to a common error interface
2020from multiple go routines (channels are great but slow). This just makes
2121that process more convenient.
2222*/
23-
2423package err
2524
2625import "sync"
Original file line number Diff line number Diff line change @@ -15,9 +15,11 @@ limitations under the License.
1515*/
1616
1717/*
18- The immutable AVL tree can be used as the foundation for many functional
19- data types. Combined with a B+ tree, you can make an immutable index which
20- serves as the backbone for many different kinds of key/value stores.
18+ Package avl includes an immutable AVL tree.
19+
20+ AVL trees can be used as the foundation for many functional data types.
21+ Combined with a B+ tree, you can make an immutable index which serves as the
22+ backbone for many different kinds of key/value stores.
2123
2224Time complexities:
2325Space: O(n)
You can’t perform that action at this time.
0 commit comments