Header Ads Widget

Bubble sort by python

  What is Bubble sort :-   Click here

 Code:-

def bubbleSort(arr):
n = len(arr)
for i in range(n-1):
for j in range(0, n-i-1):
if arr[j] > arr[j+1] :
arr[j], arr[j+1] = arr[j+1], arr[j]

# Driver code to test above
arr = [64, 34, 25, 12, 22, 11, 90]
bubbleSort(arr)
print (arr)
for i in range(len(arr)):
print ("%d" %arr[i])

Output:-

[11, 12, 22, 25, 34, 64, 90]
11
12
22
25
34
64
90





Post a Comment

1 Comments