Last active
April 15, 2020 20:21
-
-
Save ShamsAnsari/c5d1b3bbcad2b9f2cae32e8c75c86589 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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