Algorithm for Bubble Sort in C

Bubble Sort Algorithm

The first one that comes to your mind when you start learning about sorting algorithms is Bubble Sort. Why? Because it is simple and helps in understanding the basic logic of an algorithm. Let’s learn the bubble sort algorithm in C, no worry, we’ll keep it light and entertaining. By the end, you will understand why people, sometimes hate it because of its inefficiency, and you’ll get a very clear picture about how to implement it in C.

What Is It Really? Bubble Sort

Suppose you are arranging a deck of playing cards in hand. You compare two cards hand to hand, and if the card on the left is larger than the card on the right, you swap them. Repeat this process until your whole hand is sorted. That’s pretty much how Bubble Sort works!

But let’s get down to the nitty-gritty details:

  • It works by repeatedly stepping through a list.
  • Adjacent elements are compared and swapped if they are in the wrong order.
  • This is repeated until no more swaps are needed that’s when the list is sorted.

Sounds so simple, right? Well, it is. But, once you are dealing with large datasets, bubble sort tends to become slow.

The Algorithm: Step-by-Step Breakdown

Here’s a step-by-step guide to how the Bubble Sort algorithm works in C:

  1. Compare the first two elements. If the first is larger than the second, swap them.
  2. Move to the next pair of elements and repeat the process.
  3. Once you reach the end of the list, go back to the start and repeat the process for the unsorted elements.
  4. The largest element “bubbles” to the top after each pass, leaving the rest to be sorted.
  5. Keep repeating until the entire array is sorted.

Here’s the C code for that:

void bubbleSort(int arr[], int n) {
    for (int i = 0; i < n-1; i++) {
        for (int j = 0; j < n-i-1; j++) {
            if (arr[j] > arr[j+1]) {
                // swap arr[j] and arr[j+1]
                int temp = arr[j];
                arr[j] = arr[j+1];
                arr[j+1] = temp;
            }
        }
    }
}

Let’s break it down:

  • Two loops: The outer loop (i) runs through the entire array, and the inner loop (j) does the comparisons.
  • Each time, it compares arr[j] with arr[j+1] and swaps them if necessary.

Is Bubble Sort Efficient? (Spoiler: Not Really!)

Okay, here’s the truth: Bubble Sort isn’t the most efficient sorting algorithm out there. In fact, for large datasets, it’s one of the slowest, with a time complexity of O(n²). That’s quadratic time, meaning as the dataset grows, the time taken increases exponentially. Not great for big data.

But why do people still learn it? Because it’s simple and works well for small datasets or as a teaching tool to understand sorting logic.

In fact, real-world sorting tasks—like organizing millions of items on e-commerce websites—don’t rely on bubble sort. They use much faster algorithms like quick sort or merge sort (which have time complexities of O(n log n)).

When Should You Use Bubble Sort?

While bubble sort might not be the best choice for large datasets, it can still be useful in some specific cases:

  • Small datasets: If you’re only sorting a few numbers, bubble sort works just fine.
  • Already sorted lists: If your list is already sorted or nearly sorted, bubble sort can actually be quite fast.
  • Education: It’s a fantastic algorithm to use when learning the basics of sorting and algorithm logic.

Interestingly, sometimes inefficient solutions are better suited to particular contexts. For instance, during educational assessments or coding tests, bubble sort can be an easy way to show algorithmic understanding. Just like how slower modes of transportation like bicycles are preferable in heavy traffic despite faster alternatives like cars.

Optimizing the Bubble Sort

One neat trick you can add to make bubble sort a little faster is to add a flag that checks if any swaps were made during a pass. If no swaps happen, it means the list is already sorted, and you can exit early instead of going through the entire process again. Here’s how:

void bubbleSort(int arr[], int n) {
    int swapped;
    for (int i = 0; i < n-1; i++) {
        swapped = 0;
        for (int j = 0; j < n-i-1; j++) {
            if (arr[j] > arr[j+1]) {
                int temp = arr[j];
                arr[j] = arr[j+1];
                arr[j+1] = temp;
                swapped = 1;
            }
        }
        if (!swapped) break; // No swaps, so the list is sorted
    }
}

What’s happening here?

We introduce the swapped flag, and if no elements are swapped in a complete pass, the algorithm breaks out of the loop. This optimization helps reduce unnecessary comparisons in already sorted arrays.

Real-Life Example: A Simple Bubble Sort Case

Let’s look at a simple example with numbers: [7, 3, 6, 1, 9]. Here’s what happens during each pass:

First Pass:

  • Compare 7 and 3 → Swap → [3, 7, 6, 1, 9]
  • Compare 7 and 6 → Swap → [3, 6, 7, 1, 9]
  • Compare 7 and 1 → Swap → [3, 6, 1, 7, 9]
  • Compare 7 and 9 → No swap → [3, 6, 1, 7, 9]

Second Pass:

  • Compare 3 and 6 → No swap → [3, 6, 1, 7, 9]
  • Compare 6 and 1 → Swap → [3, 1, 6, 7, 9]
  • Compare 6 and 7 → No swap → [3, 1, 6, 7, 9]
  • Compare 7 and 9 → No swap → [3, 1, 6, 7, 9]

Third Pass:

  • Compare 3 and 1 → Swap → [1, 3, 6, 7, 9]
  • Compare 3 and 6 → No swap → [1, 3, 6, 7, 9]
  • Compare 6 and 7 → No swap → [1, 3, 6, 7, 9]

Fourth Pass: No swaps at all, the list is sorted!

Wrapping Up: Should You Use Bubble Sort Algorithm?

While Bubble Sort might not win any prizes for speed, it remains a fundamental part of algorithm education. It teaches essential concepts like comparison, swapping, and iteration, which form the building blocks for understanding more complex algorithms.

So, next time you’re tempted to dismiss Bubble Sort as too slow, remember that it’s the algorithmic equivalent of learning to crawl before you can walk. And just like crawling, it serves an important purpose in building up your skills.

Scroll to Top