8 lines
177 B
C
8 lines
177 B
C
#ifndef SORTIERUNG_H
|
|
#define SORTIERUNG_H
|
|
|
|
void selectionSort(int array[], int anzahl);
|
|
void quickSort(int array[], int anzahl);
|
|
void mergeSort(int array[], int anzahl);
|
|
|
|
#endif |