Skip to content

Instantly share code, notes, and snippets.

@ShamsAnsari
Last active April 15, 2020 20:21
Show Gist options
  • Save ShamsAnsari/c5d1b3bbcad2b9f2cae32e8c75c86589 to your computer and use it in GitHub Desktop.
Save ShamsAnsari/c5d1b3bbcad2b9f2cae32e8c75c86589 to your computer and use it in GitHub Desktop.
def bubbleSort(arr):
n = len(arr)
# Traverse through all array elements
for i in range(n):
# Last i elements are already in place
for j in range(0, n-i-1):
# traverse the array from 0 to n-i-1
# Swap if the element found is greater
# than the next element
if arr[j] > arr[j+1] :
arr[j], arr[j+1] = arr[j+1], arr[j]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment