mirror of
https://github.com/TheAlgorithms/C
synced 2024-11-22 05:21:49 +03:00
Fill array and print to see if it works
This commit is contained in:
parent
7b302b48cd
commit
d911aa17da
@ -9,7 +9,21 @@ int main()
|
|||||||
{
|
{
|
||||||
|
|
||||||
int i , arraySort[MAX] ={0} , isSort = FALSE, changePlace;
|
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)
|
while(isSort)
|
||||||
{
|
{
|
||||||
isSort = FALSE;
|
isSort = FALSE;
|
||||||
@ -25,7 +39,14 @@ int main()
|
|||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/* See if it works */
|
||||||
|
|
||||||
|
for(i = 0 ; i < MAX; i++)
|
||||||
|
{
|
||||||
|
printf("%d\n", arraySort[i]);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user