You are currently viewing How do we represent time and space complexity in JavaScript?

How do we represent time and space complexity in JavaScript?

Javascript Time and Space Complexity

There are multiple ways to solve one problem, for example, there are multiple algorithms to sort a list of numbers. If the case how do we analyze which one of them is the most efficient algorithm? Generally, when we talk about performance, we use an absolute measure. If I can run 100 meters in 12 seconds, I’m faster than someone who takes 15 seconds. Let’s see Javascript Time and Space Complexity

Analysis:

The absolute running time of an algorithm cannot be predicted because it depends on many factors.

  • It can change based on the programming language used to implement the algorithm.
  • The computer the program runs on
  • Other programs running at the same time.

Keeping these points in mind we evaluate the performance of an algorithm in terms of its input size. The evaluation is of two types :

  • Time Complexity – The amount of time an algorithm takes to run as a function of input size.
  • Space complexity – the amount of memory taken up by an algorithm to run as a function of input size.

By evaluating against the input size, the analysis is not only machine independent but the comparison is also more appropriate. Imagine if one algorithm is faster than other for a small input size but slower for a larger input size. We would never be able to accurately judge which is more efficient. Keep in mind, there is no one solution that works every single time. It is always good to know multiple ways to solve the problem and use the best solution, given your constraints.

READ ALSO  How to Create Timer CountDown with Seconds in JavaScript?

If your app needs to be very quick and has plenty of memory to work with, you don’t have to worry about space complexity. On the other hand, if you have little memory to work with, you should pick a solution that is relatively slower but needs less space.

How to represent complexity?

We do that using asymptotic notation. Asymptotic notation is a mathematical tool to represent time and space complexity. There are mainly three asymptotic notations.

  1. Big-O Notation (O-notation) – Worse case complexity.
  2. Omega Notation – Base case complexity.
  3. Theta Notation – Average case complexity.

Now at this point, if I were to explain their theoretical definitions it would unnecessarily confuse you. Instead, I want to make this more practical and easier to understand as a beginner.

The first step in being practical is to not worry about the best and average case complexity. As you deal with problems, you will realize that we are primarily concerned with the worst-case scenario of algorithms. So, your focus as well will be on the worse case complexity in Javascript.

Leave a Reply