diff --git a/BubbleSort.py b/BubbleSort.py new file mode 100644 index 0000000..f801e2f --- /dev/null +++ b/BubbleSort.py @@ -0,0 +1,19 @@ + +def bubbleSort(arr): + n = len(arr) + + + for i in range(n): + + 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 = [64, 34, 25, 12, 22, 11, 90] + +bubbleSort(arr) + +print ("Sorted array is:") +for i in range(len(arr)): + print ("%d" %arr[i]),