10 lines
304 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);
unsigned int findeMaxIdx(int array[], unsigned int len);
#endif