Merge pull request #5 from khageshwor/main

Add python program for bubble sorting
pull/7/head
Ming Tsai 2021-01-07 10:21:30 -04:00 committed by GitHub
commit be8440b79e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 15 additions and 0 deletions

View File

@ -0,0 +1,15 @@
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]
arr = [23, 34, 25, 12, 54, 11, 90]
bubbleSort(arr)
print ("Sorted array is:")
for i in range(len(arr)):
print (arr[i])