
What is algorithm complexity?
Natan Ferreira
- 0
- 53
Algorithm complexity is a fundamental concept in computer science, used to measure the efficiency of an algorithm in terms of execution time and memory usage. By analyzing complexity, we can predict how an algorithm behaves as the input size increases, allowing us to choose more appropriate solutions for different problems. How do we measure it?
Time Complexity
Time complexity refers to the number of steps required to execute an algorithm.
Let’s look at a search example where we have an array of integers, and when a number is provided, we search for its index. If the number is not found in the array, we return -1.

Time Complexity Analysis
Time complexity is not about the actual execution time but rather the number of steps taken during execution. This is why the amount of input data can influence the number of steps.
f is function and n is quantity of steps.
- Best case: The searched element is the first in the array. In this example, it’s 89, found in 1 step.
- f(n) = 1 (constant function)
- Worst case: The searched element is the last in the array. In this example, it’s 55, found in 6 steps.
- f(n) = n (linear function)
- Average case: The searched element is located at a middle position, around n/2. In this example, it’s somewhere in the first half of the array.
- f(n) = n/2 (linear function)
public class Complexity {
public static void main(String[] args) {
int[] numbers = new int[]{89, 25, 3, 36, 14, 55};
var response = search(3, numbers);
System.out.println(response);
}
private static int search(int number, int[] array) {
for (int i = 0; i < array.length; i++) {
if (array[i] == number) {
return i;
}
}
return -1;
}
}
The more elements we provide, the more steps may be required. Running this algorithm on different computers with different hardware, operating systems, and conditions can cause variations in execution time measured in milliseconds. This is why we measure complexity by steps rather than absolute execution time.
For example, if two developers create code to solve a problem, and Developer 1 gets a response in 3 milliseconds while Developer 2 gets a response in 1 millisecond, it does not necessarily mean that Developer 2’s code is better. The developer 2 might simply have a more powerful machine that processes faster. That’s why we evaluate the number of steps to determine which code is more efficient.

Space Complexity
Space complexity refers to the amount of memory used to execute an algorithm.
Space Complexity Analysis
Typically, the analysis considers the memory used by the algorithm in addition to what comes from the function’s parameters. In this case, the i
variable in the for
loop does not change memory usage based on the array size. Therefore, we have:
f(n) = 1 (constant function).
Since the algorithm does not create additional data structures that grow with the input size, its space complexity remains constant.

Conclusion
Understanding algorithm complexity is essential to writing efficient and scalable code. Choosing the right algorithm can directly impact the performance of a system, making it faster and more efficient. When designing solutions, it is essential to consider time and space complexity to ensure optimal performance in different scenarios.
Author
-
I am a seasoned Full Stack Software Developer with 8+ years of experience, including 6+ years specializing in Java with Spring and Quarkus. My core expertise lies in developing robust RESTful APIs integrated with Cosmos Db, MySQL, and cloud platforms like Azure and AWS. I have extensive experience designing and implementing microservices architectures, ensuring performance and reliability for high-traffic systems. In addition to backend development, I have experience with Angular to build user-friendly interfaces, leveraging my postgraduate degree in frontend web development to deliver seamless and responsive user experiences. My dedication to clean and secure code led me to present best practices to my company and clients, using tools like Sonar to ensure code quality and security. I am a critical thinker, problem solver, and team player, thriving in collaborative environments while tackling complex challenges. Beyond development, I share knowledge through my blog, NatanCode, where I write about Java, Spring, Quarkus, databases, and frontend development. My passion for learning and delivering innovative solutions drives me to excel in every project I undertake.