Bubble Sort In Python

This is a simple program which demonstrates the implementation of the bubble sort algorithm in python. The complexity of the program is O(n2) . The Input is taken from the console and then appended to a list, which is further processed .

Output Screen:


Program :
print 'Enter the list of elements followed by space:'
x=raw_input();
x=map(int,x.split())
for i in range(0, len(x)-1):
 for j in range(0,len(x)-i-1):
  if(x[j]>x[j+1]):
   swp=x[j]
   x[j]=x[j+1]
   x[j+1]=swp
print x

Found suggestions, Please comment them here !

Comments

Popular posts from this blog

Non Restoring Division Algorithm Implementation in C

Hackerrank Modified Kaprekar Numbers Solution

Bit Stuffing Code Implementation in Java