Skip to content

Commit

Permalink
Fixed minor bugs and added sample I/O
Browse files Browse the repository at this point in the history
  • Loading branch information
SaloniSwagata committed Mar 17, 2021
1 parent e23a1cc commit 1d99bd1
Showing 1 changed file with 23 additions and 7 deletions.
30 changes: 23 additions & 7 deletions Python/sort/Bubble_Sort.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,24 +5,40 @@
the most heaviest element shifts to the last position.
The flag is used to check if any swapping is performed or not. If no swapping is
done, the loop breaks as the array is already sorted.
Time Complexity: O(n^2)
Space Complexity: O(1)
Return Type: No return type as lists are mutable
'''
def bubble_sort(Array):
for i in range (len(Array)-1):

n = len(Array)
for i in range(n-1):
flag = True
for j in range (len(Array)-1):
if (Array[j] > Array[j+1]):
for j in range(n-i-1):
if Array[j] > Array[j+1]:
flag = False
Array[j], Array[j+1] = Array[j+1], Array[j]
if flag:
break

if __name__=="__main__":

if __name__ == "__main__":

print("Enter the elements of the list to be sorted: ")
Array = [int(x) for x in input().split(" ")]
bubble_sort(Array)
print("List after sorting: ")
for i in Array:
print(i,end=" ")
print(i, end=" ")


'''
Sample Input:
Enter the elements of the list to be sorted:
2 5 1 6 3 9 10 8
Sample Output:
List after sorting:
1 2 3 5 6 8 9 10
Time Complexity: O(n^2)
Space Complexity: O(1)
'''

0 comments on commit 1d99bd1

Please sign in to comment.