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

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

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
```