- Bogo Sort
- Bubble Sort
- Selection Sort
- Quick Sort
- Insertion Sort
- Shell Sort
- Heap Sort
- Merge Sort
- Compile with c99 and run:
gcc -std=c99 xxxSort.c && ./a.out
- For convenience, here just use
int
data type to store length of the array. If your array is very large, make sure replace it withunsigned int
orunsigned long
.
- Create this repository.