
Gost - Go (data) structures
Implemented data structures:
- List (singly-linked)
- Stacks (slice and list implementations)
- Queues (slice and list implementations)
- Priority Queue (preserving FIFO for equal priority)
- Min. Priority Queue (preserving FIFO for equal priority)
Note: None of the implementations are thread-safe!
Download/Installation
In your Go project's root directory, open a terminal and paste the following:
go get github.com/christat/gost
Contributions
Suggestions and pull requests are welcome! Please open an issue for new data structure requests.
License
Licensed under the MIT license.