Add a other way to sort array with bubble Method

This commit is contained in:
Abdoul Malik 2017-03-23 14:54:44 +01:00 committed by GitHub
parent 1de05bd0b7
commit 466cb48e28

35
OtherBubbleSort.c Normal file
View File

@ -0,0 +1,35 @@
#include <stdio.h>
#include <stdlib.h>
#define MAX 20
#define TRUE 1
#define FALSE 0
int main()
{
int i , arraySort[MAX] ={0} , isSort = FALSE, changePlace;
while(isSort)
{
isSort = FALSE;
for( i = 0 ; i < MAX - 1 ; i++)
{
if(arraySort[i] > arraySort[i+1])
{
changePlace = arratSort[i];
arraySort[i] = arraySort[i+1];
arraySort[i+1] = changePlace ;
isSort = TRUE;
}
}
return EXIT_SUCCESS;
}