Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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.

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)