2025-12-11 13:08:08 +01:00

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