What is Big O Notation?

January 20, 2020

jarednielsen big o

Is there a computer science topic more terrifying than Big O notation? Don’t let the name scare you, Big O notation is not a big deal. It’s very easy to understand and you don’t need to be a math whiz to do so. In this tutorial, you’ll learn the fundamentals of Big O notation, beginning with constant time complexity with examples in JavaScript.

Come with us now on a journey through time and space complexity…


Be O(#1). Grab your copy of The Little Book of Big O.


What Problem(s) Does Big O Notation Solve?

  • Big O notation helps us answer the question, “Can we do better?”

  • Big O notation equips us with a shared language for discussing the complexity of algorithms with other developers (and mathematicians!).

Let’s Get Meta 🧠

Programming is problem solving. Both are metacognitive activities. To excel, we want to improve our thinking about thinking.

Ask yourself the following questions and keep them back of mind as you proceed:

  • Why do I need to know this? (The answer is not: “Because technical interviews are intimidating!“)

  • What does it mean to do better in software development?

  • How can I use this knowledge in my own work?

If you know the answers, great! If not, even better! Another secret to success is maintaining a beginner’s mind even when you’re an expert.

What is Big O Notation?

Big O is a notation for measuring the complexity of an algorithm. Big O notation mathematically describes the complexity of an algorithm in terms of time and space. We don’t measure the speed of an algorithm in seconds (or minutes!). We measure the rate of growth of an algorithm in the number of operations it takes to complete.

What do we mean by notation? According to Wikipedia, in linguistics and semiotics, a notation is:

a system of graphics or symbols, characters and abbreviated expressions, used (for example) in artistic and scientific disciplines to represent technical facts and quantities by convention.

The O is actually the Greek character Omicron and is shorthand for “Order of”. So, if we’re discussing an algorithm with O(n), we say its order of, or rate of growth, is n, or linear complexity.

Why order?

In biology, an order is a taxonomic classification. We are in the order of primates. 🐒🦍

In computer science, an order is a mathematical classification for algorithms. We use Big O to measure the rate of growth, or complexity, of algorithms, so algorithms with equivalent complexity are in the same order. We will see below that we can also order algorithms as they increase in complexity.

You will see Big O referred to as asymptotic runtime, or asymptotic computational complexity. This is a fancy way of describing the limits of a function.

Math O’Clock 🧮 🕐

You don’t need to be a math whiz to grok Big O, but there are a few basic concepts we need to cover to set you up for success.

If you recall from algebra, you worked with functions such as f(x) and g(x), and even did things like f(g(x)), where f() and g() were equations and x was a numerical value (or another equation!) passed to the functions.

When we’re programming, we give our “equations” descriptive names (at least I hope you are), such as isAuthenticated and calcuateMedian, but we could also name them f and g (please don’t).

Let’s say f(x) is equal to 3x^2 + 12x - 6.

We could say that the order of, or rate of growth, of f(x) is O(n^2). We’ll see why later.

It’s more common to simply say “f(x) is order of n^2”, or “f(x) is Big O of n^2”.

Math time over.

For now. 😀

How Does Big O Notation Work?

Big O notation is used to define the worst-case scenario for a given algorithm.

Why?

Because we don’t know what we don’t know.

If we’re writing a search algorithm, we won’t always know the query ahead of time. If we’re writing a sorting algorithm, we won’t always know the dataset ahead of time. What if the query is the very last element or what if the dataset is a real mess. We want to know just how poorly our algorithm will perform.

The worst-case scenario is also known as the upper bound.

You’re going to encounter a lot of tables like this:

O Complexity
O(1) constant fast
O(log n) logarithmic
O(n) linear
O(n * log n) log linear
O(n^2) quadratic
O(n^3) cubic
O(2^n) exponential
O(n!) factorial slow

This lists common runtimes from fastest to slowest.

And you’re definitely going to see charts like this:

We’ll return to both as we proceed.

Before we get into any code, let’s get hands-on to get a feel for Big O using a simple variation on a classic problem: cutting stock.

Let’s say I give you a square piece of plywood and ask you to cut it into sixteen squares of equal size. How would you approach this problem?

You could take the brute force approach and use your jigsaw to cut sixteen individual squares. If you take this approach, how many steps, or computations, will you perform?

Sixteen. One for each square that you cut.

Is there an approach that requires fewer steps?

Of course!

Cut the square of plywood in half. Stack the two pieces and then cut them in half again.

How man squares did you just create?

Four!

But how many cuts did it require?

Only two.

Now cut the stack in half again, stack those pieces, and make one more dividing cut.

How many squared of plywood does that create?

Sixteen?

How many cuts, or computations, were required?

Four.

In Big O notation, our first approach, brute force, is O(n), or linear time. Creating sixteen squares requires sixteen operations. But our second, refactored and optimized, approach is O(log n), or logarithmic time (the inverse of exponentiation). Creating sixteen squares requires only four steps.

We’ll look at O(log n) later. Let’s begin with O(1), which will help us understand O(n).

O(1): Constant Time Complexity

jarednielsen big o constant

Say you’re working with an API that returns a users full name in an array, like so:

[“Jared”, “Nielsen”];

Your task is to get the users first name. Easy, in JavaScript:

const getFirstName = data => data[0];

No matter how many times you run your ‘algorithm’, it only needs to perform one operation to return the desired value. That’s O(1), or constant time.

Here’s another JavaScript example:

const isEven = num => num % 2 === 0;

Our algorithm checks whether or not a number is even or odd and will return true or false accordingly. No matter the size of the value passed to isEven, it only needs to perform one operation. Again, O(1).

One more example. Say you are asked to check if a number is prime. You struggle to think of a real-world scenario for this algorithm, so you dash off this little winner:

const isPrime = num => {
  if (num <= 1) {
    return true;
  } else if (num <= 3) {
    return true;
  } else if (num % 2 === 0 || num % 3 === 0) {
    return false;
  } else {
      return "Who cares?";
  }
}

What is our best-case scenario for this algorithm?

If num is less than or equal to 1, we will only perform one operation and return.

That would be O(1).

What if num is not less than or equal to 1? What if num does not match any of our conditions? What is our worst-case scenario?

It’s still O(1).

Why?

Even though we check multiple conditions before returning indifference, the order of, or rate of growth, is constant. The size of the input does not affect the number of operations performed. We know the upper bound, or worst-case scenario, in advance, and we know it will not change.

What if our function performs an operation in one of the conditions?

const isPrime = num => {
  if (num <= 1) {
    return true;
  } else if (num <= 3) {
    return true;
  } else if (num % 2 === 0 || num % 3 === 0) {
    return false;
  } else {
    let i = 5; 

    while (i * i <= num) {
        if (num % i === 0 || num % (i + 2) === 0) {
            return false;
        }
        i += 6;
    }
  return true;
  }
}

Is it still O(1)?

We’ll see in the next article.

What is Big O Notation?

  • Big O is a notation for measuring the complexity of an algorithm. We measure the rate of growth of an algorithm in the number of operations it takes to complete or the amount of memory it consumes.

  • Big O notation is used to define the upper bound, or worst-case scenario, for a given algorithm.

  • O(1), or constant time complexity, is the rate of growth in which the size of the input does not affect the number of operations performed.

Big O notation is not a big deal. It’s very easy to understand and you don’t need to be a math whiz to do so. In this tutorial, you learned the fundamentals of Big O notation, as well as constant time complexity with examples in JavaScript. Join us for part two of this series Big O & Linear Time Complexity.

If you want to increase your rate of growth, get a copy of The Little Book of Big O.


Profile picture

Want to level up your problem solving skills? I write a bi-weekly newsletter about programming, problem solving and lifelong learning. Join now