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.
go-algorithms/README.md

59 lines
891 B
Markdown

10 years ago
go-algorithms
10 years ago
=============
10 years ago
`go-algorithms` - implemetation of different alghoritms and data structures with `golang`.
10 years ago
9 years ago
Usage
10 years ago
-----
10 years ago
1. Clone `https://github.com/0xAX/go-algorithms.git` repo, it must be in your `$GOPATH`.
10 years ago
10 years ago
2. Execute `go build && go install` in `go-algorithms`
10 years ago
3. Execute `go build bubble_sort.go` and `./bubble_sort`
9 years ago
Alghoritms
----------
#### Sorting
* bubble sort
* selection sort
10 years ago
* merge sort
* cocktail sort
* gnome sort
10 years ago
* quick sort
* comb sort
* odd/even sort
* heap sort
10 years ago
* Shell sort
* counting sort
10 years ago
#### Searching
* binary search
#### Collections
* doubly linked list
10 years ago
* binary tree
10 years ago
* stack
* queue
10 years ago
#### Algorithms
* gcd
10 years ago
9 years ago
Contribution
10 years ago
------------
10 years ago
* Fork [go-algorithms](https://github.com/0xAX/go-algorithms);
10 years ago
* Make changes;
* Send pull request;
* Thank you.
9 years ago
Author
10 years ago
------
9 years ago
[@0xAX](https://twitter.com/0xAX)