Sort_Algorithm - UzanR/UzCodingNewLife GitHub Wiki
- Sort an array by desending order.
- Repeatedly swapping the adjacent elements if they are in wrong order.
BUBBLESORT(A[1,2,...,n]):
for i = 1 to n-1
for j = i+1 to n
if A[i] > A[j]
temp = A[i]
A[i] = A[j]
A[j] = tmp
return A[1,2,...,n]