https://github.com/theluqmn/gemlooks
Sort and search algorithms written in Ruby.
https://github.com/theluqmn/gemlooks
ruby search-algorithm sorting-algorithms
Last synced: 11 months ago
JSON representation
Sort and search algorithms written in Ruby.
- Host: GitHub
- URL: https://github.com/theluqmn/gemlooks
- Owner: theluqmn
- License: mit
- Created: 2024-04-30T13:10:42.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2024-05-17T18:08:37.000Z (about 2 years ago)
- Last Synced: 2025-01-30T09:42:25.072Z (over 1 year ago)
- Topics: ruby, search-algorithm, sorting-algorithms
- Language: Ruby
- Homepage:
- Size: 7.81 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# GemLooks
A Ruby-based sorting/searching library.
## Supported functions
### Search algorithms
- [x] Linear search
- [x] Binary search
- [ ] Depth-first search
- [ ] Breadth-first search
### Sort algorithms
- [ ] Bubble sort
- [ ] Selection sort
- [ ] Merge sort
- [ ] Quick sort
- [ ] Heap sort
- [ ] Radix sort