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 49410fd49e Adding debugger notes 10 months ago
..
README.md A little datastructures 10 months ago
go.mod Adding debugger notes 10 months ago
queue.go A little datastructures 10 months ago
set.go A little datastructures 10 months ago
stack.go A little datastructures 10 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.

Example of using Mutex