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

9 lines
247 B
C

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