forked from menault/TD1_DEV51_Qualite_Algo
Removed bubblesort bcs whynot
This commit is contained in:
21
bubblesort.c
21
bubblesort.c
@@ -1,21 +0,0 @@
|
|||||||
// Bubblesort Algorithm
|
|
||||||
// M.Menault 2024
|
|
||||||
|
|
||||||
void bubblesort(int* array, int length)
|
|
||||||
{
|
|
||||||
int swapped, i, tmp;
|
|
||||||
do
|
|
||||||
{
|
|
||||||
swapped = 0;
|
|
||||||
for(i=1;i<length;i++)
|
|
||||||
{
|
|
||||||
if(array[i-1] > array[i])
|
|
||||||
{
|
|
||||||
tmp = array[i-1];
|
|
||||||
array[i-1] = array[i];
|
|
||||||
array[i] = tmp;
|
|
||||||
swapped++;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
} while(swapped==1);
|
|
||||||
}
|
|
@@ -1,6 +0,0 @@
|
|||||||
#ifndef __BUBBLESORT__
|
|
||||||
#define __BUBBLESORT__
|
|
||||||
|
|
||||||
void bubblesort(int* array, int length);
|
|
||||||
|
|
||||||
#endif
|
|
Reference in New Issue
Block a user