You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Drew Bednar 630fe8ee45 | 3 months ago | |
---|---|---|
.. | ||
README.md | 4 months ago | |
go.mod | 4 months ago | |
queue.go | 4 months ago | |
recur.go | 3 months ago | |
recur_test.go | 3 months ago | |
set.go | 4 months ago | |
stack.go | 4 months ago |
README.md
Basic Data Structures
These are basic implementations of standard data structures. They are not thread safe implementations. To avoid race conditions you would need to use a mutex (mutual exclusion lock) to lock the data structure before any reads or writes. The sync
package has a RWMutex
that can be used.