Bubble Sort
Bubble sort is a simple, inefficient sorting algorithm used to sort lists. It is generally one of the first algorithms taught in computer science courses because it is a good algorithm to learn to build intuition about sorting. While sorting is a simple concept, it is a basic principle used in complex computer programs such as file search, data compression, and path finding. Running time is an important thing to consider when selecting a sorting algorithm since efficiency is often thought of in terms of speed. Bubble sort has an average and worst-case running time of , so in most cases, a faster algorithm is more desirable.
image1
Sorting
An algorithm that maps the following input/output pair is called a sorting algorithm:
Input: An array, , that contains orderable elements: .
Output: A sorted permutation of , called , such that
Here is what it means for an array to be sorted.
An array is sorted if and only if for all ,
In other words, a sorted array is an array that is in a particular order. For example, is sorted alphabetically, is a list of integers sorted in increasing order, and is a list of integers sorted in decreasing order.
By convention, empty arrays and singleton arrays (arrays consisting of only one element) are always sorted. This is a key point for the base case of many sorting algorithms.
Bubble Sort
The Bubble sort algorithm compares each pair of elements in an array and swaps them if they are out of order until the entire array is sorted. For each element in the list, the algorithm compares every pair of elements.
The bubble sort algorithm is as follows:
- Compare and . If is bigger than , swap the elements.
- Move to the next element, (which might now contain the result of a swap from the previous step), and compare it with . If is bigger than , swap the elements. Do this for every pair of elements until the end of the list.
- Do steps 1 and 2 times.
The animation below illustrates bubble sort:
image1
Sort the array using the bubble sort algorithm. Show all of the steps that the algorithm takes.
The steps are summarized in the following table:
image2
What would the following array look like after one iteration of bubble sort?
Here is pseudo-code describing the algorithm:
1 2 3 4 5 6 |
|
This is how the code works:
First, it goes from to comparing each element of the list with the next i.e. the element If the element is bigger than the next one, they change places, and so on. This way, in the first iteration, the element with the greatest value goes to the last position i.e. goes to Doing the same, in the second iteration of the loop, goes from to and the element of the second greatest value goes to one position before the last element i.e. it goes to The program does this process until the array is sorted.
The pseudo-code above sorts the list in an increasing order. What would you modify to make your program sort the elements in decreasing order?
You could simply change the third line of the pseudo-code: instead of using you should use
Implementing Bubble Sort
Here is one way to implement bubble sort in Python. There are other ways to implement the algorithm, but all implementations stem from the same ideas. Bubble sort can be used to sort any orderable list.
1 2 3 4 5 6 7 8 |
|
Complexity of Bubble Sort
To calculate the complexity of the bubble sort algorithm, it is useful to determine how many comparisons each loop performs. For each element in the array, bubble sort does comparisons. In big O notation, bubble sort performs comparisons. Because the array contains elements, it has an number of elements. In other words, bubble sort performs operations on an number of elements, leading to a total running time of .
Another way to analyze the complexity of bubble sort is by determining the recurrence relation that represents it.
When no comparisons are made by the program. When one comparison is made by the program. When two comparisons are made, and so on. Thus, we can conclude that when comparisons are made. Hence, in an array of length it does comparisons.
Note that Using the previous formula to calculate it follows that Use the master theorem to solve this recurrence for the running time. As expected, the algorithm's complexity is
Note: is the best-case running time for bubble sort. It is possible to modify bubble sort to keep track of the number of swaps it performs. If an array is already in sorted order, and bubble sort makes no swaps, the algorithm can terminate after one pass. With this modification, if bubble sort encounters a list that is already sorted, it will finish in time.
Though bubble sort is simple and easy to implement, it is highly impractical for solving most problems due to its slow running time. It has an average and worst-case running time of , and can only run in its best-case running time of when the input list is already sorted.
Bubble sort is a stable sort with a space complexity of .