Tag: Data Structures

Space Complexity

  • Nov 24, 2020
  • 57
  • 59

Beside time complexity, space complexity is another measurement to determine if you code is a good one. When we talk about time complexity, we are referring to the speed of your algorithm, or in other ...

Big O Rules

  • Nov 22, 2020
  • 86
  • 56

We have been talking about and have a better understanding of what is Big O Notation and different time complexities. In this post, we will learn more about how to calculate Big O, how to simplify it, ...

Time Complexities (Part 2)

  • Nov 20, 2020
  • 97
  • 74

In the previous post, we have discussed the definitions of Computational Complexity, Big O Notation, and have been introduced to some common time complexities. We will discuss in details each of the c ...

Time Complexities (Part 1)

  • Nov 18, 2020
  • 96
  • 75

When we talk about Big O and scalability of code, we simply mean when we grow bigger and bigger with our input, how much does the algorithm or function slow down? In this post, we will understand more ...