https://github.com/donno2048/sort
Superfast sorting algorithm
https://github.com/donno2048/sort
algorithm sort sorting sorting-algorithms
Last synced: 3 months ago
JSON representation
Superfast sorting algorithm
- Host: GitHub
- URL: https://github.com/donno2048/sort
- Owner: donno2048
- License: mit
- Created: 2021-04-11T13:30:48.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2022-03-15T14:04:30.000Z (over 3 years ago)
- Last Synced: 2025-01-06T16:48:52.959Z (11 months ago)
- Topics: algorithm, sort, sorting, sorting-algorithms
- Language: C
- Homepage: https://replit.com/@donno2048/sort
- Size: 6.84 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Superfast sorting algorithm
## Clone
```sh
git clone https://github.com/donno2048/sort
cd sort
```
## Usage
```sh
gcc main.c sort.c -o main
./main
```
Edit _main.c_ to sort your own arrays.
Use the optimizers:
```sh
-Wall -Wextra -O3 -march=native -Ofast
```
To speed-up the code i.e.
```sh
gcc main.c sort.c -o main -Wall -Wextra -O3 -march=native -Ofast
./main
```