13 lines
516 B
C
13 lines
516 B
C
/*-----------------------------------------------------------------------------
|
|
* HTBLA-Leonding
|
|
*-----------------------------------------------------------------------------
|
|
* Exercise Number: S07
|
|
* Title: Quick sort implementation
|
|
* Author: */<your name>;/*
|
|
*-----------------------------------------------------------------------------
|
|
* Description:
|
|
* Implements the quick sort algorithm
|
|
*-----------------------------------------------------------------------------
|
|
*/
|
|
|
|
#include "quick_sort.h"
|