Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/maxcnunes/algorithms-data-structures
https://github.com/maxcnunes/algorithms-data-structures
Last synced: about 1 month ago
JSON representation
- Host: GitHub
- URL: https://github.com/maxcnunes/algorithms-data-structures
- Owner: maxcnunes
- Created: 2016-07-14T02:26:57.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2016-08-11T01:12:29.000Z (over 8 years ago)
- Last Synced: 2024-10-18T07:20:18.566Z (3 months ago)
- Language: Go
- Size: 6.84 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Algorithms and Data Structures
==============================Classic algorithms and data structures concepts implemented in Go.
> Based in the [arnauddri's project](https://github.com/arnauddri/algorithms). Although any solution implemented here will not copy (cheat) from his approach.
### Contents
#### Data Structures
* [Set](https://github.com/maxcnunes/algorithms-data-structures/blob/master/data-structures/set) - [(wiki)](https://en.wikipedia.org/wiki/Set_(abstract_data_type))
* [Linked List](https://github.com/maxcnunes/algorithms-data-structures/blob/master/data-structures/linked-list) - [(wiki)](https://en.wikipedia.org/wiki/Linked_list)#### Sorting algorithms
* [Bubble Sort](https://github.com/maxcnunes/algorithms-data-structures/blob/master/algorithms/sorting/bubble) [(wiki)](http://en.wikipedia.org/wiki/Bubble_sort)
* [Shell Sort](https://github.com/maxcnunes/algorithms-data-structures/blob/master/algorithms/sorting/shell) [(wiki)](http://en.wikipedia.org/wiki/Shellsort)#### Searching algorithms
* [Sieve of Eratosthenes - Find prime numbers](https://github.com/maxcnunes/algorithms-data-structures/blob/master/algorithms/searching/sieve-of-eratosthenes) [(wiki)](https://en.wikipedia.org/wiki/Sieve_of_Eratosthenes)