Skip to content

Latest commit

 

History

History
10 lines (8 loc) · 436 Bytes

File metadata and controls

10 lines (8 loc) · 436 Bytes

QuickSort

Quicksort algorithm using the middle element as pivot in C to sort an array of integers. Section 4.10 of The C Programming Language.

About the project:

  • QuickSort sorting algorithm to sort an array of integers in increasing order using middle element as pivot.
  • Using swap.c to swap two elements in-place in the array.

What did I learn from this:

  • Recursion in C.
  • Splitting source file into multiple files.