Computer Science, asked by tusharsamy, 6 months ago

write a program to create a string type array in desecnding order using bubble sort technique pls help ​

Answers

Answered by Hemalathajothimani
4

Explanation:

Implementing Bubble Sort Algorithm

Starting with the first element(index = 0), compare the current element with the next element of the array.

If the current element is greater than the next element of the array, swap them.

If the current element is less than the next element, move to the next element. Repeat Step 1.

Similar questions