SlideShare a Scribd company logo
Computational Complexity
Chnoor M. Rahman
Spring 2023
A priori analysis and A posteriori analysis
• A priori analysis of algorithms
• It means we do analysis (space and time) of an algorithm prior to running it
on a specific system.
• That is, we determine time and space complexity of algorithm by just seeing
the algorithm rather than running it on a particular system (with different
processor and compiler).
• A posteriori analysis of algorithms
• It means we analyze the algorithm only after running it on a system.
• It directly depends on the system and it changes from system to system.
A priori analysis
• Algorithms
• Independent of language
• Hardware independent
• Time and Space function
• Results do not change
Posteriori Testing
• Program
• Language dependent
• Hardware dependent
• Results might not be the same
Analyzing algorithms
To analyze algorithms, their complexity should be calculates.
The most popular technique for computing complexity of algorithms
is Big oh notation.
Computational Complexity
• Computational complexity is a continuum, in that some algorithms require
linear time (that is, the time required increases directly with the number of
items or nodes in the list, graph, or network being processed).
an algorithm is a series of contained steps, which you follow in order to achieve
some goal, or to produce some output.
• Another group of algorithms require quadratic or even exponential time to
complete (that is, the time required increases with the number of items
squared or with the exponential of that number).
7
Big O notation
• Time complexity analysis in programming is just an extremely simplified
mathematical way of analyzing how long an algorithm with a given number of
inputs (n) will take to complete it’s task. It’s usually defined using Big-O notation.
It tells you the growth of an algorithm
• Big O Notation in Data Structure tells us how well an algorithm will perform in a
particular situation.
8
Big O notation
Assume we have the following program:
array = [2, 3, 4, 5, ……, 8]
int findSum(array){
int total = 0;
for(int i=0, i<array.lemgth; i++)
totatl+=i;
return total;
}
9
Instead of:
How much time does it take to run
this function? This depends on the
type of the machine
Use:
How does the run time of this
function grow?
To answer this use:
Big O notation
The general steps for Big-O runtime analysis are
as follows:
1.Figure out what the input is and what n represents.
2.Express the maximum number of operations, the algorithm
performs in terms of n.
3.Eliminate all excluding the highest order terms.
4.Remove all the constant factors.
10
Eliminate all excluding the highest order terms
Regular Big-O
2 O(1) --> It's just a constant number
2n + 10 O(n) --> n has the largest effect
5n^2 O(n^2) --> n^2 has the largest effect
11
Common Time complexities
1. O(1) — Constant Time: Given an input of size n, it only takes a single
step for the algorithm to accomplish the task.
2. O(log n) — Logarithmic time: given an input of size n, the number of
steps it takes to accomplish the task are decreased by some factor with
each step.
3. O(n) — Linear Time: Given an input of size n, the number of of steps
required is directly related (1 to 1)
12
Common Time complexities cont..
4. O(n²) — Quadratic Time (polynomial): Given an input of size n, the
number of steps it takes to accomplish a task is square of n.
5. O(C^n) — Exponential Time: Given an input of size n, the number of
steps it takes to accomplish a task is a constant to the n power (pretty
large number).
13
14
Example:
let n = 16;
O (1) = 1 step "(awesome!)"
O (log n) = 4 steps "(awesome!)" -- assumed base 2
O (n) = 16 steps "(pretty good!)"
O(n^2) = 256 steps "(uhh..we can work with this)"
O(2^n) = 65,536 steps "(...)“ (an n increases by 1 -> count doubles roughly by 2)
15
16
Big O Analysis
No. of inputs
Required
time
Example
algorithm change_Position (X , Y){
Store:=X; (1)
X:=Y; (1)
Y:=Store; (1)
}
F(n) =3
Time Complexity = O(1)
O(1) – Example
//If I know the persons name, I only have to take one step to check:
function isFriend(name){ //similar to knowing the index in an Array
return friends[name]; (1)
}
isFriend('Mark’) // returns True and only took one step
F(n) = 1;
________________________________________________________________________
function add(num1,num2){ // I have two numbers, takes one step to return the value
return num1 + num2; (1)
}
18
Time Complexity: O(1)
Time Complexity: O(1)
O(1) – Example
void constantTimeComplexity(int arr[])
{
printf("First element of array = %d",arr[0]);
}
Answer: O(1)
Here, the input array could be 1 item or 1,000 items, but this function 8istill
just require one step.
19
Example
For (i=1; i<n;i=i*2){
Statement;
}
O(log2n)
Any time the loop is increased by
multiplication then the time complexity is
O(log2n)
i
---
1*2=2
2*2=4
4*2=8
8*2=16
16*2=32
32*2=64
.
2^k
O(log n) - Example
//You decrease the amount of work you have to do with each step
function thisOld(num, array){
var midPoint = Math.floor( array.length /2 );
if( array[midPoint] === num) return true;
if( array[midPoint] < num ) --> only look at second half of the array
if( array[midpoint] > num ) --> only look at first half of the array
//recursively repeat until you get the solution
}
When the input is divided with each iteration, it’s O(log n). Example: Binary Search
21
O(n) – Example
//The number of steps you take is directly correlated to the input size
function addAges(array){
var sum = 0;
for (let i=0 ; i < array.length; i++){ //has to go through each value
sum += array[i]
}
return sum;
}
22
O(n) – Example
void linearTimeComplexity(int arr[], int size)
{
for (int i = 0; i < size; i++)
{
printf("%dn", arr[i]);
}
}
Answer: O(n)
This function runs in O(n) time (or "linear time"), where n is the number of
items in the array. If the array has 10 items, we have to print 10 times. If it
has 1000 items, we have to print 1000 times.
23
O(n²) – Example 1
function addedAges(array){
var addedAge = 0;
for (let i=0 ; i < array.length; i++){
for(let j=0 ; j < array.length ; j++){
addedAge += array[i][j];
}
}
return addedAge;
}
Note: If one for loop is linear time (n) Then two nested for loops are (n * n) or
(n^2) Quadratic!
24
Here we're nesting two loops. If
our array has n items, our outer
loop runs n times, and our inner
loop runs n times for each
iteration of the outer loop,
giving us n^2 total prints. If the
array has 10 items, we have to
print 100 times. If it has 1000
items, we have to print
1000000 times. Thus this
function runs in O(n^2) time (or
"quadratic time").
O(n²) – Example 2
void quadraticTimeComplexity(int arr[], int size)
{
for (int i = 0; i < size; i++)
{
for (int j = 0; j < size; j++)
{
printf("%d = %dn", arr[i], arr[j]);
}
}
}
Answer: O(n^2)
25
O(2^n) – Example 1
The number of steps it takes to accomplish a task is a constant to the n power. For
example, trying to find every combination of letters for a password of length n.
26
O(2^n) – Example 2
int fibonacci(int num)
{
if (num <= 1) return num;
return fibonacci(num - 2) + fibonacci(num - 1);
}
Answer: O(2^n)
An example of an O(2^n) function is the recursive calculation of Fibonacci
numbers. O(2^n) denotes an algorithm whose growth doubles with each
addition to the input data set. The growth curve of an O(2^n) function is
exponential - starting off very shallow, then rising meteorically.
27
Example
Algorithm Sum(X,Y,n)
{
for (i=0;i<n;i++)
{
for(j=0;j<n;j++)
{
Z[i, j]=X[I,j]+Y[I,j];
}
}
}
Since
A is two dimension array, B is two
dimension array and C is two dimension
array
Then
X n^2
Y n^2
Z n^2
n 1
i 1
j 1
f(n)=3 n^2+3
O(n^2)
Example
For (i=1, i<n; i=i+20)
{
statement; n/20
}
--------
f(n)=n/20
Example
Algorithm Sum(X,Y,n)
{
for (i=0;i<n;i++)
{
for(j=0;j<n;j++)
{
Z[i, j]=X[I,j]+Y[I,j];
}
}
}
n+1
n * (n+1)
n * n
---------
2n^2+ 2n+1
f(n)=(n^2)
O(n^2)
Example
For (i=0, i<n; i++)
{
statement;
}
n+1
n
_____________
O(n)
Example
For (i=n, i>0; i--)
{
statement;
}
n+1
n
_____________
O(n)
Algorithm Adding (X , n)
{
a = 0 ;
for( i=0 ; i<n ; i++)
{
a= a+ X[i];
}
return a;
}
Example
1
n+1
n
1
f(n)=2n +3
O(n)=n
Example
public static void main(String[] args){
int a = 0, b = 0;
int N = 5, M = 5;
for (int i = 0; i < N; i++)
a += 5;
for (int i = 0; i < M; i++)
b += 10;
System.out.println(a + " " + b);
}
34
More Examples:
Logarithmic algorithm – O(logn) – Binary Search.
Linear algorithm – O(n) – Linear Search.
Superlinear algorithm – O(nlogn) – Heap Sort, Merge Sort.
Polynomial algorithm – O(n^c) – Strassen’s Matrix Multiplication, Bubble
Sort, Selection Sort, Insertion Sort, Bucket Sort.
Exponential algorithm – O(c^n) – Tower of Hanoi.
Factorial algorithm – O(n!) – Determinant Expansion by Minors, Brute force
Search algorithm for Traveling Salesman Problem.
35
Example - HW
int f(int n){
If(n==1)
return 1;
Else
return f(n-1) + f(n-1);
}
36
References
• https://www.freecodecamp.org/news/time-is-complex-but-priceless-
f0abd015063c/#:~:text=O(n%C2%B2)%20%E2%80%94%20Quadratic%20Time%3
A%20The%20number%20of%20steps,power%20(pretty%20large%20number).
• https://www.vegaitglobal.com/media-center/knowledge-base/fundamental-
data-structures-computational-complexity
• Data Structures and algorithms – 4th Edition – Chapter 4
37

More Related Content

PPT
Array
PPT
Mutual Exclusion Election (Distributed computing)
PDF
Disk allocation methods
PPTX
PPTX
daa-unit-3-greedy method
DOC
Task assignment approach
PPT
Knapsack problem using fixed tuple
PPTX
Hashing Technique In Data Structures
Array
Mutual Exclusion Election (Distributed computing)
Disk allocation methods
daa-unit-3-greedy method
Task assignment approach
Knapsack problem using fixed tuple
Hashing Technique In Data Structures

What's hot (20)

PPT
Chapter 12 ds
PDF
Python multithreaded programming
PPTX
DeadLock in Operating-Systems
PPTX
INTER PROCESS COMMUNICATION (IPC).pptx
PPTX
Arrays in Java
PDF
Double ended queue
PPTX
Error control
PPT
Exception Handling in JAVA
PDF
System calls
PPTX
Transport layer
PPTX
Methods in java
PPTX
Merge Sort
PPTX
Deadlock dbms
PPTX
Auxiliary memory
DOCX
Critical section operating system
PPTX
Method overloading and constructor overloading in java
PPTX
Data Structures - Lecture 3 [Arrays]
PPTX
Multithreading in java
PPTX
Process synchronization
Chapter 12 ds
Python multithreaded programming
DeadLock in Operating-Systems
INTER PROCESS COMMUNICATION (IPC).pptx
Arrays in Java
Double ended queue
Error control
Exception Handling in JAVA
System calls
Transport layer
Methods in java
Merge Sort
Deadlock dbms
Auxiliary memory
Critical section operating system
Method overloading and constructor overloading in java
Data Structures - Lecture 3 [Arrays]
Multithreading in java
Process synchronization
Ad

Similar to Computational Complexity.pptx (20)

PPT
Lecture 1 and 2 of Data Structures & Algorithms
PDF
Chapter One.pdf
PPT
Cs1311lecture23wdl
PPT
Time complexity.ppt
PPT
Time complexity.pptr56435 erfgegr t 45t 35
PPT
How to calculate complexity in Data Structure
PPT
how to calclute time complexity of algortihm
PPT
Lec03 04-time complexity
PPTX
9. Asymptotic Analysizbbsbsbsbshzhsbbss.pptx
PPT
Data Structure and Algorithms
PDF
Data Structure & Algorithms - Mathematical
PPT
Algorithm And analysis Lecture 03& 04-time complexity.
PPTX
Time complexity.pptxghhhhhhhhhhhhhhhjjjjjjjjjjjjjjjjjjjjjjjjjj
PPTX
DS Unit-1.pptx very easy to understand..
PDF
ESINF03-AlgAnalis.pdfESINF03-AlgAnalis.pdf
PPT
Basics of data structure types of data structures
PDF
Algorithm analysis
PPTX
Module-1.pptxbdjdhcdbejdjhdbchchchchchjcjcjc
PPTX
9 big o-notation
PPTX
1_Asymptotic_Notation_pptx.pptx
Lecture 1 and 2 of Data Structures & Algorithms
Chapter One.pdf
Cs1311lecture23wdl
Time complexity.ppt
Time complexity.pptr56435 erfgegr t 45t 35
How to calculate complexity in Data Structure
how to calclute time complexity of algortihm
Lec03 04-time complexity
9. Asymptotic Analysizbbsbsbsbshzhsbbss.pptx
Data Structure and Algorithms
Data Structure & Algorithms - Mathematical
Algorithm And analysis Lecture 03& 04-time complexity.
Time complexity.pptxghhhhhhhhhhhhhhhjjjjjjjjjjjjjjjjjjjjjjjjjj
DS Unit-1.pptx very easy to understand..
ESINF03-AlgAnalis.pdfESINF03-AlgAnalis.pdf
Basics of data structure types of data structures
Algorithm analysis
Module-1.pptxbdjdhcdbejdjhdbchchchchchjcjcjc
9 big o-notation
1_Asymptotic_Notation_pptx.pptx
Ad

Recently uploaded (20)

PDF
Approach and Philosophy of On baking technology
PDF
Encapsulation_ Review paper, used for researhc scholars
PPTX
Programs and apps: productivity, graphics, security and other tools
PPT
“AI and Expert System Decision Support & Business Intelligence Systems”
PPTX
Group 1 Presentation -Planning and Decision Making .pptx
PDF
Advanced methodologies resolving dimensionality complications for autism neur...
PPTX
20250228 LYD VKU AI Blended-Learning.pptx
PDF
Getting Started with Data Integration: FME Form 101
PDF
Network Security Unit 5.pdf for BCA BBA.
PPTX
Machine Learning_overview_presentation.pptx
PDF
gpt5_lecture_notes_comprehensive_20250812015547.pdf
PPTX
1. Introduction to Computer Programming.pptx
PDF
Per capita expenditure prediction using model stacking based on satellite ima...
PDF
cuic standard and advanced reporting.pdf
PDF
A comparative analysis of optical character recognition models for extracting...
PDF
Spectral efficient network and resource selection model in 5G networks
PDF
Building Integrated photovoltaic BIPV_UPV.pdf
PPT
Teaching material agriculture food technology
PDF
Unlocking AI with Model Context Protocol (MCP)
PDF
Video forgery: An extensive analysis of inter-and intra-frame manipulation al...
Approach and Philosophy of On baking technology
Encapsulation_ Review paper, used for researhc scholars
Programs and apps: productivity, graphics, security and other tools
“AI and Expert System Decision Support & Business Intelligence Systems”
Group 1 Presentation -Planning and Decision Making .pptx
Advanced methodologies resolving dimensionality complications for autism neur...
20250228 LYD VKU AI Blended-Learning.pptx
Getting Started with Data Integration: FME Form 101
Network Security Unit 5.pdf for BCA BBA.
Machine Learning_overview_presentation.pptx
gpt5_lecture_notes_comprehensive_20250812015547.pdf
1. Introduction to Computer Programming.pptx
Per capita expenditure prediction using model stacking based on satellite ima...
cuic standard and advanced reporting.pdf
A comparative analysis of optical character recognition models for extracting...
Spectral efficient network and resource selection model in 5G networks
Building Integrated photovoltaic BIPV_UPV.pdf
Teaching material agriculture food technology
Unlocking AI with Model Context Protocol (MCP)
Video forgery: An extensive analysis of inter-and intra-frame manipulation al...

Computational Complexity.pptx

  • 2. A priori analysis and A posteriori analysis • A priori analysis of algorithms • It means we do analysis (space and time) of an algorithm prior to running it on a specific system. • That is, we determine time and space complexity of algorithm by just seeing the algorithm rather than running it on a particular system (with different processor and compiler). • A posteriori analysis of algorithms • It means we analyze the algorithm only after running it on a system. • It directly depends on the system and it changes from system to system.
  • 3. A priori analysis • Algorithms • Independent of language • Hardware independent • Time and Space function • Results do not change
  • 4. Posteriori Testing • Program • Language dependent • Hardware dependent • Results might not be the same
  • 5. Analyzing algorithms To analyze algorithms, their complexity should be calculates. The most popular technique for computing complexity of algorithms is Big oh notation.
  • 6. Computational Complexity • Computational complexity is a continuum, in that some algorithms require linear time (that is, the time required increases directly with the number of items or nodes in the list, graph, or network being processed). an algorithm is a series of contained steps, which you follow in order to achieve some goal, or to produce some output. • Another group of algorithms require quadratic or even exponential time to complete (that is, the time required increases with the number of items squared or with the exponential of that number). 7
  • 7. Big O notation • Time complexity analysis in programming is just an extremely simplified mathematical way of analyzing how long an algorithm with a given number of inputs (n) will take to complete it’s task. It’s usually defined using Big-O notation. It tells you the growth of an algorithm • Big O Notation in Data Structure tells us how well an algorithm will perform in a particular situation. 8
  • 8. Big O notation Assume we have the following program: array = [2, 3, 4, 5, ……, 8] int findSum(array){ int total = 0; for(int i=0, i<array.lemgth; i++) totatl+=i; return total; } 9 Instead of: How much time does it take to run this function? This depends on the type of the machine Use: How does the run time of this function grow? To answer this use: Big O notation
  • 9. The general steps for Big-O runtime analysis are as follows: 1.Figure out what the input is and what n represents. 2.Express the maximum number of operations, the algorithm performs in terms of n. 3.Eliminate all excluding the highest order terms. 4.Remove all the constant factors. 10
  • 10. Eliminate all excluding the highest order terms Regular Big-O 2 O(1) --> It's just a constant number 2n + 10 O(n) --> n has the largest effect 5n^2 O(n^2) --> n^2 has the largest effect 11
  • 11. Common Time complexities 1. O(1) — Constant Time: Given an input of size n, it only takes a single step for the algorithm to accomplish the task. 2. O(log n) — Logarithmic time: given an input of size n, the number of steps it takes to accomplish the task are decreased by some factor with each step. 3. O(n) — Linear Time: Given an input of size n, the number of of steps required is directly related (1 to 1) 12
  • 12. Common Time complexities cont.. 4. O(n²) — Quadratic Time (polynomial): Given an input of size n, the number of steps it takes to accomplish a task is square of n. 5. O(C^n) — Exponential Time: Given an input of size n, the number of steps it takes to accomplish a task is a constant to the n power (pretty large number). 13
  • 13. 14
  • 14. Example: let n = 16; O (1) = 1 step "(awesome!)" O (log n) = 4 steps "(awesome!)" -- assumed base 2 O (n) = 16 steps "(pretty good!)" O(n^2) = 256 steps "(uhh..we can work with this)" O(2^n) = 65,536 steps "(...)“ (an n increases by 1 -> count doubles roughly by 2) 15
  • 15. 16 Big O Analysis No. of inputs Required time
  • 16. Example algorithm change_Position (X , Y){ Store:=X; (1) X:=Y; (1) Y:=Store; (1) } F(n) =3 Time Complexity = O(1)
  • 17. O(1) – Example //If I know the persons name, I only have to take one step to check: function isFriend(name){ //similar to knowing the index in an Array return friends[name]; (1) } isFriend('Mark’) // returns True and only took one step F(n) = 1; ________________________________________________________________________ function add(num1,num2){ // I have two numbers, takes one step to return the value return num1 + num2; (1) } 18 Time Complexity: O(1) Time Complexity: O(1)
  • 18. O(1) – Example void constantTimeComplexity(int arr[]) { printf("First element of array = %d",arr[0]); } Answer: O(1) Here, the input array could be 1 item or 1,000 items, but this function 8istill just require one step. 19
  • 19. Example For (i=1; i<n;i=i*2){ Statement; } O(log2n) Any time the loop is increased by multiplication then the time complexity is O(log2n) i --- 1*2=2 2*2=4 4*2=8 8*2=16 16*2=32 32*2=64 . 2^k
  • 20. O(log n) - Example //You decrease the amount of work you have to do with each step function thisOld(num, array){ var midPoint = Math.floor( array.length /2 ); if( array[midPoint] === num) return true; if( array[midPoint] < num ) --> only look at second half of the array if( array[midpoint] > num ) --> only look at first half of the array //recursively repeat until you get the solution } When the input is divided with each iteration, it’s O(log n). Example: Binary Search 21
  • 21. O(n) – Example //The number of steps you take is directly correlated to the input size function addAges(array){ var sum = 0; for (let i=0 ; i < array.length; i++){ //has to go through each value sum += array[i] } return sum; } 22
  • 22. O(n) – Example void linearTimeComplexity(int arr[], int size) { for (int i = 0; i < size; i++) { printf("%dn", arr[i]); } } Answer: O(n) This function runs in O(n) time (or "linear time"), where n is the number of items in the array. If the array has 10 items, we have to print 10 times. If it has 1000 items, we have to print 1000 times. 23
  • 23. O(n²) – Example 1 function addedAges(array){ var addedAge = 0; for (let i=0 ; i < array.length; i++){ for(let j=0 ; j < array.length ; j++){ addedAge += array[i][j]; } } return addedAge; } Note: If one for loop is linear time (n) Then two nested for loops are (n * n) or (n^2) Quadratic! 24 Here we're nesting two loops. If our array has n items, our outer loop runs n times, and our inner loop runs n times for each iteration of the outer loop, giving us n^2 total prints. If the array has 10 items, we have to print 100 times. If it has 1000 items, we have to print 1000000 times. Thus this function runs in O(n^2) time (or "quadratic time").
  • 24. O(n²) – Example 2 void quadraticTimeComplexity(int arr[], int size) { for (int i = 0; i < size; i++) { for (int j = 0; j < size; j++) { printf("%d = %dn", arr[i], arr[j]); } } } Answer: O(n^2) 25
  • 25. O(2^n) – Example 1 The number of steps it takes to accomplish a task is a constant to the n power. For example, trying to find every combination of letters for a password of length n. 26
  • 26. O(2^n) – Example 2 int fibonacci(int num) { if (num <= 1) return num; return fibonacci(num - 2) + fibonacci(num - 1); } Answer: O(2^n) An example of an O(2^n) function is the recursive calculation of Fibonacci numbers. O(2^n) denotes an algorithm whose growth doubles with each addition to the input data set. The growth curve of an O(2^n) function is exponential - starting off very shallow, then rising meteorically. 27
  • 27. Example Algorithm Sum(X,Y,n) { for (i=0;i<n;i++) { for(j=0;j<n;j++) { Z[i, j]=X[I,j]+Y[I,j]; } } } Since A is two dimension array, B is two dimension array and C is two dimension array Then X n^2 Y n^2 Z n^2 n 1 i 1 j 1 f(n)=3 n^2+3 O(n^2)
  • 28. Example For (i=1, i<n; i=i+20) { statement; n/20 } -------- f(n)=n/20
  • 29. Example Algorithm Sum(X,Y,n) { for (i=0;i<n;i++) { for(j=0;j<n;j++) { Z[i, j]=X[I,j]+Y[I,j]; } } } n+1 n * (n+1) n * n --------- 2n^2+ 2n+1 f(n)=(n^2) O(n^2)
  • 30. Example For (i=0, i<n; i++) { statement; } n+1 n _____________ O(n)
  • 31. Example For (i=n, i>0; i--) { statement; } n+1 n _____________ O(n)
  • 32. Algorithm Adding (X , n) { a = 0 ; for( i=0 ; i<n ; i++) { a= a+ X[i]; } return a; } Example 1 n+1 n 1 f(n)=2n +3 O(n)=n
  • 33. Example public static void main(String[] args){ int a = 0, b = 0; int N = 5, M = 5; for (int i = 0; i < N; i++) a += 5; for (int i = 0; i < M; i++) b += 10; System.out.println(a + " " + b); } 34
  • 34. More Examples: Logarithmic algorithm – O(logn) – Binary Search. Linear algorithm – O(n) – Linear Search. Superlinear algorithm – O(nlogn) – Heap Sort, Merge Sort. Polynomial algorithm – O(n^c) – Strassen’s Matrix Multiplication, Bubble Sort, Selection Sort, Insertion Sort, Bucket Sort. Exponential algorithm – O(c^n) – Tower of Hanoi. Factorial algorithm – O(n!) – Determinant Expansion by Minors, Brute force Search algorithm for Traveling Salesman Problem. 35
  • 35. Example - HW int f(int n){ If(n==1) return 1; Else return f(n-1) + f(n-1); } 36

Editor's Notes

  • #7: Every good developer want to give their users more time, so they can do all those things they enjoy. They do this by minimizing time complexity.
  • #8: (quadratic or exponential time algorithms) At the far end of this continuum lie intractable problems—those whose solutions cannot be efficiently implemented. For those problems, computer scientists seek to find heuristic algorithms that can almost solve the problem and run in a reasonable amount of time.
  • #9: Time complexity analysis in programming is just an extremely simplified mathematical way of analyzing how long an algorithm with a given number of inputs (n) will take to complete it’s task. It’s usually defined using Big-O notation.
  • #21: Any time the loop is increased by multiplication then the time complexity is O(log2n)