2026-06-18 09:03:11 +02:00

9 lines
220 B
C

#ifndef SORTIERUNG_H
#define SORTIERUNG_H
void tausche(int *zahl1, int *zahl2);
void selectionsort(int array[], int anzahl);
void insertionsort(int array[], int anzahl);
void bubblesort(int array[], int anzahl);
#endif