Description
Bubble Sort is an iterative sorting algorithm that imitates the movement of bubbles in sparkling water..
Complexity:
Average Complexity: O(n2)
Best Case: O(n)
Worst Case: O(n2)
Space Complexity: O(1)