mirror of
https://github.com/TheAlgorithms/C
synced 2024-11-22 13:31:21 +03:00
57 lines
906 B
C
57 lines
906 B
C
#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;
|
|
|
|
|
|
/* For example
|
|
Insertion random values in array to test
|
|
*/
|
|
|
|
|
|
for(i = 0 ; i < MAX; i++)
|
|
{
|
|
arraySort[i] = rand()%101 ;
|
|
}
|
|
|
|
|
|
/* Algorithm of bubble methods */
|
|
|
|
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;
|
|
}
|
|
|
|
}
|
|
}
|
|
|
|
/* See if it works */
|
|
|
|
for(i = 0 ; i < MAX; i++)
|
|
{
|
|
printf("%d\n", arraySort[i]);
|
|
}
|
|
|
|
|
|
|
|
|
|
return EXIT_SUCCESS;
|
|
|
|
}
|