WTF is Bubble Sort?

Photo by Henry & Co. on Unsplash

WTF is Bubble Sort?

Alright, let's dive into one of the OG sorting algorithms that's as straightforward as it gets, but also kind of a slacker when it comes to big parties (a.k.a. large datasets) - Bubble Sort! It’s like that one simple trick your grandpa insists is the best way to do things because, back in his day, they didn’t need all these fancy gadgets and gizmos. But, let's face it, sometimes grandpa's way works out pretty well for small stuff!

So, What's the Deal with Bubble Sort?

Imagine you've got a line of people sorted by height, but it's all out of order. You're trying to make it so the shortest person is at the front of the line and the tallest at the back. Bubble sort would basically have each person turn to the one next to them and, if they're taller, swap places. Keep doing this, marching back and forth, until everyone’s in the right spot. Simple, right?

But here's the kicker: it's not exactly efficient. If you've got a ton of people, there's going to be a lot of back-and-forth before everyone finds their place. It's like trying to organize a flash mob where no one knows the dance moves ahead of time - chaotic but eventually sorts itself out.

The Nitty-Gritty: Java Code for Bubble Sort

Here’s how you’d whip up a Bubble Sort in Java, just in case you want to try sorting your digital crowd of numbers:

import java.util.Random;

public class BubbleSort {
    void bubbleSort(int arr[]) {
        int n = arr.length;
        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+1] and arr[j]
                    int temp = arr[j];
                    arr[j] = arr[j+1];
                    arr[j+1] = temp;
                }
    }

    // Generate an array filled with random numbers
    int[] generateRandomArray(int size) {
        int[] newArray = new int[size];
        Random rand = new Random();
        for (int i = 0; i < size; i++) {
            newArray[i] = rand.nextInt(size);
        }
        return newArray;
    }

    public static void main(String args[]) {
        BubbleSort ob = new BubbleSort();

        // Small array example
        int smallArr[] = {64, 34, 25, 12, 22, 11, 90};
        System.out.println("Sorting a small array:");
        ob.bubbleSort(smallArr);
        for (int i=0; i < smallArr.length; i++)
            System.out.print(smallArr[i] + " ");
        System.out.println("\nSmall array sorted!");

        // Large array example
        int size = 10000; // Change this number based on how brave you're feeling
        int[] largeArr = ob.generateRandomArray(size);
        System.out.println("Sorting a very large array. This might take a while...");
        long startTime = System.currentTimeMillis();
        ob.bubbleSort(largeArr);
        long endTime = System.currentTimeMillis();
        System.out.println("Sorting complete!");
        System.out.println("Sorting a large array of size " + size + " took " + (endTime - startTime) + " milliseconds.");
    }
}

Why Even Bother Learning Bubble Sort?

I know what you're thinking: "If bubble sort is so darn inefficient, why waste brain cells on it?" Well, it's all about the fundamentals, my friend. Understanding bubble sort lays down the groundwork for grasping more complex sorting algorithms. It's like learning to crawl before you ball. Plus, it's got its charms for small arrays or for when you're just starting to get your feet wet in coding.

The Takeaway

In the grand scheme of things, Bubble Sort is like that old, classic car that’s fun to drive around the block but isn’t going to win any races. It’s great for learning the ropes and appreciating how far we've come in the world of algorithms. Just don’t rely on it for sorting your Google-sized datasets, or you’ll be waiting till the cows come home. But hey, for small gigs or just kicking it back with some coding basics, Bubble Sort has got your back.