DZone
Thanks for visiting DZone today,
Edit Profile
  • Manage Email Subscriptions
  • How to Post to DZone
  • Article Submission Guidelines
Sign Out View Profile
  • Post an Article
  • Manage My Drafts
Over 2 million developers have joined DZone.
Log In / Join
Refcards Trend Reports
Events Video Library
Refcards
Trend Reports

Events

View Events Video Library

Related

  • Stop Running Two Data Systems for One Agent Query
  • Mastering SwiftUI Gestures: Basic to Advanced
  • RAG Done Right: When to Use SQL, Search, and Vector Retrieval and How To Combine Them
  • Why Your RAG Pipeline Will Fail Without an MCP Server

Trending

  • Building Production-Grade GenAI on GCP with Vertex AI Agent Builder
  • A 5-Step SOC Guide That Meets RBI Expectations and Strengthens Security Operations
  • Production Database Migration or Modernization: A Comprehensive Planning Guide [Part 2]
  • How Rule Engines Transform Business Agility and Code Simplicity
  1. DZone
  2. Data Engineering
  3. Data
  4. Big O Notation - Why? When? Where?

Big O Notation - Why? When? Where?

Why? Big O notation gives abstraction and the opportunity for generalizing. When? Whenever you want to measure one parameter from the changing volume of another. Where? It is best to look at fairly atomic sections of code that make one specific business logic.

By 
Danylo Tolmachov user avatar
Danylo Tolmachov
·
Nov. 22, 22 · Tutorial
Likes (6)
Comment
Save
Tweet
Share
6.6K Views

Join the DZone community and get the full member experience.

Join For Free

What Is Big O?

This is a mathematical term that originated in the early 20th century in number theory and came almost immediately to computer science as questions arose with resource optimization. Wiki-defined Big O notation is a mathematical notation that describes the limiting behaviour of a function when the argument tends towards a particular value or infinity. Let's rephrase it, and make this definition a little simpler and closer to software development. Any task is solved according to one or another approach, one or another algorithm of action. To compare the effectiveness of heterogeneous solutions written in different programming languages using different approaches, you can start analyzing its execution through the notation. Next, let's look at the most common classes of frequently encountered time complexities.

O(1) - Сonstant

O(1) - Сonstant

Nothing depends on the volume of input data, most likely the manipulation will not be performed on the entire volume, but a certain fixed part of them will be selected

Code example

JavaScript
 
const array = [1, 2, 5, 8, 100]
console.log(array[0]) // 1

As an example, it is straightforward access to array elements. Unfortunately, there is no good example in algorithms. As you can see it is a pretty simple action, not sure if this could be named an algorithm.


O(n) - Linear 

O(n) - Linear

The complexity of the algorithm increases predictably and linearly with the amount of input. Accordingly, the efficiency of such an algorithm falls in direct proportion.

Code example

JavaScript
 
const array = [1, 2, 3, 4, 5]
let sum = 0
for (let i = 0; i < array.length; i++) {
  sum += array[i] 
}

console.log(sum) // 15

As an algorithm example, here we could look at linear search. It is like a brute-force search by going through elements one by one from one end to another.


O(n^2) - Quadratic

O(n^2) - Quadratic


The complexity of the algorithm implies passing through the data sample twice to get the result.

JavaScript
 
const matrix = [
  [1, 2, 3],
  [1, 2, 3],
  [1, 2, 3],
]

let sum = 0
for (let i = 0; i < matrix.length; i++) {
  for (let j = 0; j < matrix[i].length; j++) {
    sum += matrix[i][j]
  }
}

console.log(sum) // 18

Among algorithms, many simple sorts satisfy such complexity. For example, Bubble sort and Insertion sort.


 O(log n) - Logarithmic

O(log n) - Logarithmic


The main feature of the complexity of the algorithm, by which it can be identified, is that after each iteration, the sample size will be reduced by about half

Code example:

JavaScript
 
function isContains(array, value) {
  let left = 0
  let right = array.length - 1

  while (left <= right) {
    const mid = Math.floor((left + right) / 2)

    if (array[mid] === value) return true
    else if (array[mid] < value) left = mid + 1
    else right = mid - 1
  }

  return false
}

const array = [1, 2, 5, 8, 100]

console.log(isContains(array, 5)) // true
console.log(isContains(array, 9)) // false

In this niche of complexity, you can find more advanced search algorithms, such as - Binary search.


O(n log n) - Linearithmic

O(n log n) - Linearithmic


This complexity is often compound, and can often, but not always, be decomposed into two nested loops, one with O(n) and O(log n) complexity. Algorithms of this type in the worst cases can degrade to the level of O(n^2).

Code example:

JavaScript
 
const matrix = [
  [1, 2, 3],
  [1, 2, 3],
  [1, 2, 3],
]
let sum = 0
for (let i = 0; i < matrix.length; i++) {
  for (j = 1; j < matrix[i].length; j *= 2) {
    sum += matrix[i][j]
  }
}

console.log(sum) // 15

In the category of such complexity, there are advanced sort algorithms, such as - Quick sort, Merge sort, etc


Conclusion

Let's summarize everything from above and put all the difficulties on one chart.

Combined chart


On a really big amount (n > billions of elements,) of data optimality scale from worst to best would look like this - O(n^2) -> O(n log n) -> O(n) -> O(log n) -> O(1).

I want to emphasize once again that these are the difficulties that are most often encountered in programming, but in fact, the classification of notations is bigger. You need to understand that one and the same task has a large number of solutions, and for evaluating and choosing the best one, this notation can be considered as one of the options. But do not forget that this is only one of the ways and far from the only one. If you write super-optimal code and arrive at a constant complexity score, but it's impossible or hard to maintain, then it's still bad code.

P.S. Useful cheat sheet for remembering time complexity and space complexity - BigoCheatSheet

Data structure

Opinions expressed by DZone contributors are their own.

Related

  • Stop Running Two Data Systems for One Agent Query
  • Mastering SwiftUI Gestures: Basic to Advanced
  • RAG Done Right: When to Use SQL, Search, and Vector Retrieval and How To Combine Them
  • Why Your RAG Pipeline Will Fail Without an MCP Server

Partner Resources

×

Comments

The likes didn't load as expected. Please refresh the page and try again.

  • RSS
  • X
  • Facebook

ABOUT US

  • About DZone
  • Support and feedback
  • Community research

ADVERTISE

  • Advertise with DZone

CONTRIBUTE ON DZONE

  • Article Submission Guidelines
  • Become a Contributor
  • Core Program
  • Visit the Writers' Zone

LEGAL

  • Terms of Service
  • Privacy Policy

CONTACT US

  • 3343 Perimeter Hill Drive
  • Suite 215
  • Nashville, TN 37211
  • [email protected]

Let's be friends:

  • RSS
  • X
  • Facebook