Skip to content

Files

Latest commit

40920db · Nov 9, 2016

History

History
This branch is up to date with Algorithm-archive/Learn-Data_Structure-Algorithm-by-Python:master.

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
Nov 9, 2016
Nov 9, 2016
Nov 9, 2016

Bubble Sort

Bubble Sort is an algorithm which is used to sort N elements that are given in a memory for eg: an Array with N number of elements. Bubble Sort compares all the element one by one and sort them based on their values.

It is called Bubble sort, because with each iteration the smaller element in the list bubbles up towards the first place, just like a water bubble rises up to the water surface.

Sorting takes place by stepping through all the data items one-by-one in pairs and comparing adjacent data items and swapping each pair that is out of order. bubble sort demonstration