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 to file
Alexander Kuleshov 0e2f7d78e6 move collections outside of collections 8 years ago
binaryTree move collections outside of collections 8 years ago
list move collections outside of collections 8 years ago
numerical move gcd to numerical 8 years ago
queue move collections outside of collections 8 years ago
searching Adding comments and more output 9 years ago
sorting Merge branch 'master' of github.com:0xAX/go-algorithms 10 years ago
stack move collections outside of collections 8 years ago
.gitignore README.md updated 10 years ago
README.md Update README.md 9 years ago
utils.go Update utils.go 9 years ago

README.md

go-algorithms

go-algorithms - implemetation of different alghoritms and data structures with golang.

Usage

  1. Clone https://github.com/0xAX/go-algorithms.git repo, it must be in your $GOPATH.

  2. Execute go build && go install in go-algorithms

  3. Execute go build bubble_sort.go and ./bubble_sort

Alghoritms

Sorting

  • bubble sort
  • selection sort
  • merge sort
  • cocktail sort
  • gnome sort
  • quick sort
  • comb sort
  • odd/even sort
  • heap sort
  • Shell sort
  • counting sort

Searching

  • binary search

Collections

  • doubly linked list
  • binary tree
  • stack
  • queue

Algorithms

  • gcd

Contribution

  • Fork go-algorithms;
  • Make changes;
  • Send pull request;
  • Thank you.

Author

@0xAX