forked from paulusja/info1_uebungen
9 lines
247 B
C
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 |