donno2048 / sort

Superfast sorting algorithm

Home Page:https://replit.com/@donno2048/sort

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Superfast sorting algorithm

Clone

git clone https://github.com/donno2048/sort
cd sort

Usage

gcc main.c sort.c -o main
./main

Edit main.c to sort your own arrays.

Use the optimizers:

-Wall -Wextra -O3 -march=native -Ofast

To speed-up the code i.e.

gcc main.c sort.c -o main -Wall -Wextra -O3 -march=native -Ofast
./main

About

Superfast sorting algorithm

https://replit.com/@donno2048/sort

License:MIT License


Languages

Language:C 100.0%