Bubble sort in Ascending and descending order

in this tutorial we are gonna see how to do sorting in ascending & descending order using Bubble sort algorithm. Bubble sort program for sorting in ascending Order Output: Bubble sort program for sorting in descending Order In order to sort in descending order we just need to change the logic array[j] > array[j+1] to array[j] <… Continue reading Bubble sort in Ascending and descending order