Bubble Sort algorithm

Bubble Sort Algorithm: Sorting with Bubbles! ๐Ÿ›

At some point in your programming journey, you will encounter the need to sort data efficiently. Sorting algorithms are essential tools in computer science, and one of the simplest and most widely used ones is the Bubble Sort algorithm. In this blog post, we will explore the Bubble Sort algorithm in detail, using JavaScript and Python as our programming languages. So, let's dive into the world of bubbles and sorting! ๐Ÿ’ฆ

What is Bubble Sort? ๐Ÿงผ

Bubble Sort is a comparison-based sorting algorithm that works by repeatedly swapping adjacent elements if they are in the wrong order. The algorithm gets its name from the way smaller elements "bubble" to the top of the list during each iteration.

The Bubble Sort algorithm follows a simple concept: it repeatedly steps through the list, compares adjacent elements, and swaps them if they are in the wrong order. This process is repeated until the entire list is sorted.

Bubble Sort Implementation in JavaScript ๐Ÿš€

Let's start by implementing the Bubble Sort algorithm in JavaScript. Here's a code snippet that demonstrates the algorithm:

function bubbleSort(arr) {
  const len = arr.length;
  let swapped;
  
  do {
    swapped = false;
    for (let i = 0; i < len - 1; i++) {
      if (arr[i] > arr[i + 1]) {
        [arr[i], arr[i + 1]] = [arr[i + 1], arr[i]];
        swapped = true;
      }
    }
  } while (swapped);
  
  return arr;
}

const unsortedArray = [7, 2, 10, 1, 5];
const sortedArray = bubbleSort(unsortedArray);
console.log(sortedArray); // [1, 2, 5, 7, 10]

In this JavaScript code snippet, the bubbleSort function takes an array as its input and returns the sorted array. The algorithm uses a do-while loop to repeatedly iterate over the array until it is fully sorted. The swapped variable is used to track whether any swaps occurred during an iteration. If no swaps occur, the loop terminates, as the array is already sorted.

Bubble Sort Implementation in Python ๐Ÿ

Next, let's implement the Bubble Sort algorithm in Python. Here's an example of how to do it:

def bubble_sort(arr):
    n = len(arr)
    
    for i in range(n - 1):
        swapped = False
        for j in range(n - i - 1):
            if arr[j] > arr[j + 1]:
                arr[j], arr[j + 1] = arr[j + 1], arr[j]
                swapped = True
        
        if not swapped:
            break
    
    return arr

unsorted_array = [7, 2, 10, 1, 5]
sorted_array = bubble_sort(unsorted_array)
print(sorted_array)  # [1, 2, 5, 7, 10]

In this Python code snippet, the bubble_sort function takes an array as its input and returns the sorted array. The algorithm uses nested loops to iterate over the array and swap adjacent elements if they are out of order. The outer loop controls the number of passes, while the inner loop performs the comparisons and swaps.

Time and Space Complexity Analysis โฐ

Now, let's analyze the time and space complexity of the Bubble Sort algorithm.

Time Complexity

The average and worst-case time complexity of Bubble Sort is O(n^2), where 'n' is the number of elements in the array. This occurs because, in the worst-case scenario, the algorithm must iterate over the entire array for each element.

Space Complexity

The space complexity of Bubble Sort is O(1) because it uses only a constant amount of additional space.

Optimization Techniques ๐Ÿš€

Bubble Sort can be optimized to reduce unnecessary iterations and comparisons, especially when dealing with large datasets. Here are a few optimization techniques for Bubble Sort:

  1. Flagging: Introduce a flag variable to indicate whether any swaps occurred during an iteration. If no swaps occur, the algorithm can terminate early, as the array is already sorted.

  2. Boundary Optimization: After each pass, the largest element bubbles to the end of the array. Therefore, we can reduce the number of comparisons by iterating up to the last unsorted element only.

  3. Adaptive Bubble Sort: Keep track of the last swap position during each pass. In subsequent passes, only iterate up to that position, as elements after it are already sorted.

Implementing these optimization techniques can significantly improve the performance of the Bubble Sort algorithm.

Sorting Visualization and Performance Analysis ๐Ÿ“Š

To better understand the Bubble Sort algorithm, let's visualize its sorting process and compare its performance against other sorting algorithms. We will use the matplotlib library in Python to visualize the sorting steps and analyze their time complexities.

ยฉ 2024 Justin Riggio. All rights reserved. DigitalOcean Referral Badge