Use unsigned.
This commit is contained in:
parent
487f103de4
commit
cbe48ba34f
@ -2,8 +2,8 @@
|
||||
#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);
|
||||
void selectionsort(int array[], unsigned int anzahl);
|
||||
void insertionsort(int array[], unsigned int anzahl);
|
||||
void bubblesort(int array[], unsigned int anzahl);
|
||||
|
||||
#endif
|
||||
Loading…
x
Reference in New Issue
Block a user