Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/bmf-san/road-to-algorithm-master
I want to be a algorithm master.
https://github.com/bmf-san/road-to-algorithm-master
algorithm data-structures golang
Last synced: about 1 month ago
JSON representation
I want to be a algorithm master.
- Host: GitHub
- URL: https://github.com/bmf-san/road-to-algorithm-master
- Owner: bmf-san
- Created: 2019-05-10T01:36:31.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2023-08-03T14:21:54.000Z (over 1 year ago)
- Last Synced: 2024-10-16T21:05:48.048Z (3 months ago)
- Topics: algorithm, data-structures, golang
- Language: Go
- Size: 21.5 KB
- Stars: 2
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# road-to-algorithm-master
I want to be a algorithm master.
All argorithm is implemented by Golang.# Table of contents
- [algorithm](https://github.com/bmf-san/road-to-algorithm-master/tree/master/algorithm)
- [backtrack](https://github.com/bmf-san/road-to-algorithm-master/tree/master/algorithm/backtrack)
- [gcd](https://github.com/bmf-san/road-to-algorithm-master/tree/master/algorithm/gcd)
- [lcm](https://github.com/bmf-san/road-to-algorithm-master/tree/master/algorithm/lcm)
- [search](https://github.com/bmf-san/road-to-algorithm-master/tree/master/algorithm/search)
- [binary_search](https://github.com/bmf-san/road-to-algorithm-master/tree/master/algorithm/search/binary_search)
- [linear](https://github.com/bmf-san/road-to-algorithm-master/tree/master/algorithm/search/linear)
- [sliding_window](https://github.com/bmf-san/road-to-algorithm-master/tree/master/algorithm/sliding_window)
- [sort](https://github.com/bmf-san/road-to-algorithm-master/tree/master/algorithm/sort)
- [bubble_sort](https://github.com/bmf-san/road-to-algorithm-master/tree/master/algorithm/sort/bubble_sort)
- [heap_sort](https://github.com/bmf-san/road-to-algorithm-master/tree/master/algorithm/sort/heap_sort)
- [insertion_sort](https://github.com/bmf-san/road-to-algorithm-master/tree/master/algorithm/sort/insertion_sort)
- [merge_sort](https://github.com/bmf-san/road-to-algorithm-master/tree/master/algorithm/sort/merge_sort)
- [quick_sort](https://github.com/bmf-san/road-to-algorithm-master/tree/master/algorithm/sort/quick_sort)
- [selection_sort](https://github.com/bmf-san/road-to-algorithm-master/tree/master/algorithm/sort/selection_sort)
- [big_o](https://github.com/bmf-san/road-to-algorithm-master/tree/master/big_o)
- [data_structures](https://github.com/bmf-san/road-to-algorithm-master/tree/master/data_structures)
- [array](https://github.com/bmf-san/road-to-algorithm-master/tree/master/data_structures/array)
- [array](https://github.com/bmf-san/road-to-algorithm-master/tree/master/data_structures/array/array)
- [hash_table](https://github.com/bmf-san/road-to-algorithm-master/tree/master/data_structures/hash_table)
- [hash_table](https://github.com/bmf-san/road-to-algorithm-master/tree/master/data_structures/hash_table/hash_table)
- [heap](https://github.com/bmf-san/road-to-algorithm-master/tree/master/data_structures/heap)
- [heap](https://github.com/bmf-san/road-to-algorithm-master/tree/master/data_structures/heap/heap)
- [linked_list](https://github.com/bmf-san/road-to-algorithm-master/tree/master/data_structures/linked_list)
- [singly_linked_list](https://github.com/bmf-san/road-to-algorithm-master/tree/master/data_structures/linked_list/singly_linked_list)
- [queue](https://github.com/bmf-san/road-to-algorithm-master/tree/master/data_structures/queue)
- [queue](https://github.com/bmf-san/road-to-algorithm-master/tree/master/data_structures/queue/queue)
- [stack](https://github.com/bmf-san/road-to-algorithm-master/tree/master/data_structures/stack)
- [stack](https://github.com/bmf-san/road-to-algorithm-master/tree/master/data_structures/tree/stack)
- [tree](https://github.com/bmf-san/road-to-algorithm-master/tree/master/data_structures/tree )
- [binary_search_tree](https://github.com/bmf-san/road-to-algorithm-master/tree/master/data_structures/tree/binary_search_tree)
- [trie](https://github.com/bmf-san/road-to-algorithm-master/tree/master/data_structures/tree/trie)# References
- [Top interview questions and Big-O notation cheat sheets](https://www.lavivienpost.com/top-interview-questions-and-big-o-notation-cheat-sheets/)