Chapter 5 Algorithmic Complexity
Chapter 5 Algorithmic Complexity
Introduction
Algorithmic complexity is concerned about how fast or slow particular algorithm performs.
We define complexity as a numerical function T (n) - time versus the input size n. We want to
define time taken by an algorithm without depending on the implementation details. But know
that T (n) does depend on the implementation! A given algorithm will take different amounts
of time on the same inputs depending on such factors as: processor speed; instruction set, disk
speed, brand of compiler and etc. The way around is to estimate efficiency of each
algorithm asymptotically. We will measure time T (n) as the number of elementary "steps"
(defined in any way), provided each such step takes constant time.
Let us consider two classical examples: addition of two integers. We will add two integers
digit by digit (or bit by bit), and this will define a "step" in our computational model.
Therefore, we say that addition of two n-bit integers takes n steps. Consequently, the total
computational time is T (n) = c * n, where c is time taken by addition of two bits. On different
computers, addition of two bits might take different time, say c1 and c2, thus the addition of
two n-bit integers takes T(n) = c1 * n and T(n) = c2* n respectively. This shows that different
machines result in different slopes, but time T (n) grows linearly as input size increases.
The process of abstracting away details and determining the rate of resource usage in terms of
the input size is one of the fundamental ideas in computer science.
Asymptotic Notations
Intuitively, this means that function f(n) does not grow faster than g(n), or that function g(n) is
an upper bound for f(n), for all sufficiently large n→∞
1 = O(n)
n = O(n2)
log(n) = O(n)
2 n + 1 = O(n)
1 + 2 n + n2 ≤ n + 2 n + n2 ≤ n2 + 2 n2 + n 2 = 4 n2
Therefore, c = 4.
Constant Time: O(1)
An algorithm is said to run in constant time if it requires the same amount of time regardless
of the input size. Examples:
An algorithm is said to run in linear time if its time execution is directly proportional to the
input size, i.e. time grows linearly as input size increases. Examples:
An algorithm is said to run in logarithmic time if its time execution is proportional to the
logarithm of the input size. Example:
binary search
Recall the "twenty questions" game - the task is to guess the value of a hidden number in an
interval. Each time you make a guess, you are told whether your guess is too high or too low.
Twenty questions game implies a strategy that uses your guess number to halve the interval
size. This is an example of the general problem-solving method known as binary search:
locate the element a in a sorted (in ascending order) array by first comparing a with
the middle element and then (if they are not equal) dividing the array into two
subarrays; if a is less than the middle element you repeat the whole procedure in the
left subarray, otherwise - in the right subarray. The procedure repeats until a is found
or subarray is a zero dimension.
Note, log(n) < n, when n→∞. Algorithms that run in O(log n) does not use the whole input.
An algorithm is said to run in logarithmic time if its time execution is proportional to the
square of the input size. Examples:
n = Ω(1)
n2 = Ω(n)
n2 = Ω(n log(n))
2 n + 1 = O(n)
2 n = Θ(n)
n2 + 2 n + 1 = Θ( n2)
Analysis of Algorithms
The term analysis of algorithms is used to describe approaches to the study of the
performance of algorithms. In this course we will perform the following types of analysis: