#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