Computer Science, asked by ujaved601, 2 months ago

Sorting refers to arranging data in a particular order. Apply Bubble Sort algorithm to sort the given list of numbers in descending order. Show the results of each round of the bubble sort algorithm.

27 59 81 62 35 56 31 23 6

Answers

Answered by nitishkumar717706
0

Explanation:

#include <stdio.h>

void main ()

{

int number[30];

int i, j, a, n;

printf("Enter the value of N\n");

scanf("%d", &n);

printf("Enter the numbers \n");

for (i = 0; i < n; ++i)

scanf("%d", &number[i]);

/* sorting begins ... */

for (i = 0; i < n; ++i)

{

for (j = i + 1; j < n; ++j)

{

if (number[i] < number[j])

{

a = number[i];

number[i] = number[j];

number[j] = a;

}

}

}

printf("The numbers arranged in descending order are given below\n");

for (i = 0; i < n; ++i)

{

printf("%d\n", number[i]);

}

}

Similar questions