Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/x13a/zig-sort
Some sort algorithms in zig.
https://github.com/x13a/zig-sort
algorithms sort zig zig-lang
Last synced: 15 days ago
JSON representation
Some sort algorithms in zig.
- Host: GitHub
- URL: https://github.com/x13a/zig-sort
- Owner: x13a
- License: 0bsd
- Archived: true
- Created: 2021-05-07T19:33:15.000Z (almost 4 years ago)
- Default Branch: master
- Last Pushed: 2021-11-17T00:45:04.000Z (about 3 years ago)
- Last Synced: 2024-10-02T07:04:56.825Z (4 months ago)
- Topics: algorithms, sort, zig, zig-lang
- Language: Zig
- Homepage:
- Size: 7.81 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# zig-sort
Some sort algorithms in [zig](https://ziglang.org/).
## Types
- [Heap](https://en.wikipedia.org/wiki/Heapsort)
- [Insertion](https://en.wikipedia.org/wiki/Insertion_sort)
- [Merge](https://en.wikipedia.org/wiki/Merge_sort)
- [Quick](https://en.wikipedia.org/wiki/Quicksort)
- [Selection](https://en.wikipedia.org/wiki/Selection_sort)
- [Shell](https://en.wikipedia.org/wiki/Shellsort)