SlideShare a Scribd company logo
4
Most read
5
Most read
14
Most read
Bis illa -Ra a -Ra e
   m h-e hm n-e he m

      COMPLEXITY OF
     ALGORITHM AND
   COST_TIME TRADE OFF
By

   Muhammad Muzammal


E-Mail: hello-hi99@hotmail.com
Intro uc n
            d tio


Algorithm

   An algorithm is a finite set of well-defined instructions
  for accomplishing some task, which given an initial
  state, will terminate in a defined end-state.
Complexity of algorithms

Complexity of algorithms
  The complexity of an algorithm is a function f (n) which measures
  the time and space used by an algorithm in terms of input size n.
    In computer science, the complexity of an algorithm is a way
  to classify how efficient an algorithm is, compared to alternative
  ones. The focus is on how execution time increases with the data
  set to be processed.
   The computational complexity and efficient implementation of the
  algorithm are important in computing, and this depends on
  suitable data structures.
Complexity of algorithms

Description of Complexity
Different algorithms may complete the same task with
a different set of instructions in less or more time,
space or effort than other. The analysis and study of
algorithms is a discipline in Computer Science which
has a strong mathematical background. It often relies
on theoretical analysis of pseudo-code. To compare
the efficiency of algorithms, we don't rely on abstract
measures such as the time difference in running
speed, since it too heavily relies on the processor
power and other tasks running in parallel.
Classes of complexity

Polynomial time algorithms
•(C) --- Constant time --- the time necessary to perform
the algorithm does not change in response to the size of
the problem.
•(n) --- Linear time --- the time grows linearly with the size
(n) of the problem.
• (n2) --- Quadratic time --- the time grows quadratically
with the size (n) of the problem
Classes of complexity

Sub-linear time algorithms
• It grow slower than linear time algorithms
• Super-polynomial time algorithms
• It grows faster than polynomial time algorithms.
• Exponential time --- the time required grows
exponentially with the size of the problem.
Example of finding the complexity of an
                    algorithm

BUBBLE SORT
For ( int I = 0 ; I < 5 ; I ++ )
             For ( int j = 0 ; j < 4 ; j ++ )
        If (A [ j ] > A [ j + 1 ] ) {
                Temp = A [ j ] ;
A [ j ] = A [ j+1 ] ;
A [ j + 1 ] =Temp;
               }
Complexity of Bubble Sort

  The time for assorting algorithm is measured in the
number of the comparisons. The number of f(n) of
comparisons in the bubble sort is easily computed.
Specifically ,there are n-1 comparisons during the 1st
pass , which places the largest element in the last
position ; there are n-2 comparisons in the 2nd step,
which places the 2nd largest element in the next –to-
last position; and so on.. In other words, the time
required to execute the bubble sort algorithm is
proportional to n2, where n is the number of input
items.
Example of finding the complexity of an
                      algorithm
Linear Search
Int array[10]={10,20,30,40,50,60,70,80,90,100};
Int I,n, Loc=-1;
Cout<<“Enter the value to find “;
Cin>>n;
For(i=0;I<10;I++)
  if(array[I]==n)
   Loc=I;
If(Loc==-1)
  Cout<<“Value not found”;
Else
  Cout<<“The value”<<n<<“is found at index “<<Loc;
Space-time tradeoff

 In computer science, a space-time tradeoff refers to a
choice between algorithmic solutions of a data
processing problem that allows one to derease the
running time of an algorithmic solution by increasing
the space to store the data and vice versa.
The computation time can be reduced at the cost of
increased memory use. As the relative costs of CPU
cycles, RAM space, and hard drive space change —
hard drive space has for some time been getting
cheaper at a much faster rate than other components
of computers, the appropriate choices for space-time
tradeoffs have changed radically. Often, by exploiting
a space-time tradeoff, a program can be made to run
much faster.
Space-time tradeoff

 A space-time tradeoff can be applied to the
problem of data storage. If data is stored
uncompressed, it takes more space but less time
than if the data were stored compressed (since
compressing the data reduces the amount of
space it takes, but it takes time to run the
compression algorithm). Depending on the
particular instance of the problem, either way is
practical.
Continued…

  Larger code size can be traded for higher program
speed when applying loop unwinding. This technique
makes the code longer for each iteration of a loop, but
saves the computation time required for jumping back to
the beginning of the loop at the end of each iteration.

   Algorithms that make use of space-time tradeoffs to
achieve better running times include the baby-step
giant-step algorithm for calculating discrete logarithms
Using Genetic Algorithms to Solve
   Construction Time-Cost Trade-Off Problems

 Existing methods for time-cost trade-off analysis focus
on using heuristics or mathematical programming.
These methods, however, are not efficient enough to
solve large-scale CPM networks (hundreds of activities
or more). Analogous to natural selection and genetics in
reproduction, genetic algorithms (GAs) have been
successfully adopted to solve many science and
engineering problems and have proven to be an
efficient means for searching optimal solutions in a
large problem domain computer program that can
execute the algorithm efficiently.

More Related Content

What's hot (20)

PPTX
Sorting Algorithms
Pranay Neema
 
PPT
Divide and conquer
Dr Shashikant Athawale
 
PDF
Loop invarient
Amit Kumar Rathi
 
PPTX
Data structures and algorithms
Julie Iskander
 
PDF
Algorithms Lecture 7: Graph Algorithms
Mohamed Loey
 
PDF
Algorithms Lecture 2: Analysis of Algorithms I
Mohamed Loey
 
DOC
Time and space complexity
Ankit Katiyar
 
PPTX
Asymptotic notations
Nikhil Sharma
 
PPT
Divide and Conquer
Dr Shashikant Athawale
 
PPTX
Graph representation
Tech_MX
 
PPTX
Strassen's matrix multiplication
Megha V
 
PDF
Searching and Sorting Techniques in Data Structure
Balwant Gorad
 
PPTX
Breadth First Search & Depth First Search
Kevin Jadiya
 
PDF
sparse matrix in data structure
MAHALAKSHMI P
 
PPTX
AVL Tree in Data Structure
Vrushali Dhanokar
 
PPT
Arrays
SARITHA REDDY
 
PPTX
Merge Sort
Nikhil Sonkamble
 
PPTX
Big o notation
hamza mushtaq
 
PPTX
Quick sort-Data Structure
Jeanie Arnoco
 
PPT
Dinive conquer algorithm
Mohd Arif
 
Sorting Algorithms
Pranay Neema
 
Divide and conquer
Dr Shashikant Athawale
 
Loop invarient
Amit Kumar Rathi
 
Data structures and algorithms
Julie Iskander
 
Algorithms Lecture 7: Graph Algorithms
Mohamed Loey
 
Algorithms Lecture 2: Analysis of Algorithms I
Mohamed Loey
 
Time and space complexity
Ankit Katiyar
 
Asymptotic notations
Nikhil Sharma
 
Divide and Conquer
Dr Shashikant Athawale
 
Graph representation
Tech_MX
 
Strassen's matrix multiplication
Megha V
 
Searching and Sorting Techniques in Data Structure
Balwant Gorad
 
Breadth First Search & Depth First Search
Kevin Jadiya
 
sparse matrix in data structure
MAHALAKSHMI P
 
AVL Tree in Data Structure
Vrushali Dhanokar
 
Merge Sort
Nikhil Sonkamble
 
Big o notation
hamza mushtaq
 
Quick sort-Data Structure
Jeanie Arnoco
 
Dinive conquer algorithm
Mohd Arif
 

Viewers also liked (12)

PDF
Data Structure: Algorithm and analysis
Dr. Rajdeep Chatterjee
 
PPT
358 33 powerpoint-slides_14-sorting_chapter-14
sumitbardhan
 
PDF
Sorting
Gopi Saiteja
 
PDF
Sorting
Zaid Shabbir
 
PPT
Counting sort(Non Comparison Sort)
Hossain Md Shakhawat
 
PDF
Lecture 07 Data Structures - Basic Sorting
Haitham El-Ghareeb
 
PPTX
Sorting
Ashim Lamichhane
 
PPTX
Merge sort and quick sort
Shakila Mahjabin
 
PDF
Data Structures & Algorithm design using C
Emertxe Information Technologies Pvt Ltd
 
PPTX
Asymptotic Notations
Rishabh Soni
 
PPT
Introduction to data structures and Algorithm
Dhaval Kaneria
 
PDF
Sorting Algorithms
Mohammed Hussein
 
Data Structure: Algorithm and analysis
Dr. Rajdeep Chatterjee
 
358 33 powerpoint-slides_14-sorting_chapter-14
sumitbardhan
 
Sorting
Gopi Saiteja
 
Sorting
Zaid Shabbir
 
Counting sort(Non Comparison Sort)
Hossain Md Shakhawat
 
Lecture 07 Data Structures - Basic Sorting
Haitham El-Ghareeb
 
Merge sort and quick sort
Shakila Mahjabin
 
Data Structures & Algorithm design using C
Emertxe Information Technologies Pvt Ltd
 
Asymptotic Notations
Rishabh Soni
 
Introduction to data structures and Algorithm
Dhaval Kaneria
 
Sorting Algorithms
Mohammed Hussein
 
Ad

Similar to Complexity of Algorithm (20)

PPTX
presentationfinal-090714235255-phpapp01 (1) (2).pptx
javed75
 
PPTX
algocomplexity cost effective tradeoff in
javed75
 
PPTX
Unit i basic concepts of algorithms
sangeetha s
 
PDF
12200223054_SrijanGho;sh_DAA_19.pdfkmkmm
arijitghosal14
 
PPTX
FALLSEM2022-23_BCSE202L_TH_VL2022230103292_Reference_Material_I_25-07-2022_Fu...
AntareepMajumder
 
PPTX
Data Structures and Agorithm: DS 22 Analysis of Algorithm.pptx
RashidFaridChishti
 
PPT
Data Structure and Algorithm chapter two, This material is for Data Structure...
bekidea
 
PPTX
Analysis of Algorithm full version 2024.pptx
rajesshs31r
 
PPTX
Design Analysis of Alogorithm 1 ppt 2024.pptx
rajesshs31r
 
PPTX
Algorithm for the DAA agscsnak javausmagagah
RaviPandey598038
 
PPTX
TIME EXECUTION OF DIFFERENT SORTED ALGORITHMS
Tanya Makkar
 
PPTX
Algorithm analysis in fundamentals of data structure
Vrushali Dhanokar
 
PPTX
Analysis of algorithms
iqbalphy1
 
PPTX
BCSE202Lkkljkljkbbbnbnghghjghghghghghghghgh
shivapatil54
 
PPTX
Performance analysis and randamized agoritham
lilyMalar1
 
PPTX
Kompleksitas Algoritma
Ajeng Savitri
 
PPTX
algorithmanalysisinfundamentalsofdatastructure-190810085243.pptx
ShirishaBuduputi
 
PDF
Analyzing algorithms
Onkar Nath Sharma
 
PPT
Time andspacecomplexity
LAKSHMITHARUN PONNAM
 
PDF
Daa notes 1
smruti sarangi
 
presentationfinal-090714235255-phpapp01 (1) (2).pptx
javed75
 
algocomplexity cost effective tradeoff in
javed75
 
Unit i basic concepts of algorithms
sangeetha s
 
12200223054_SrijanGho;sh_DAA_19.pdfkmkmm
arijitghosal14
 
FALLSEM2022-23_BCSE202L_TH_VL2022230103292_Reference_Material_I_25-07-2022_Fu...
AntareepMajumder
 
Data Structures and Agorithm: DS 22 Analysis of Algorithm.pptx
RashidFaridChishti
 
Data Structure and Algorithm chapter two, This material is for Data Structure...
bekidea
 
Analysis of Algorithm full version 2024.pptx
rajesshs31r
 
Design Analysis of Alogorithm 1 ppt 2024.pptx
rajesshs31r
 
Algorithm for the DAA agscsnak javausmagagah
RaviPandey598038
 
TIME EXECUTION OF DIFFERENT SORTED ALGORITHMS
Tanya Makkar
 
Algorithm analysis in fundamentals of data structure
Vrushali Dhanokar
 
Analysis of algorithms
iqbalphy1
 
BCSE202Lkkljkljkbbbnbnghghjghghghghghghghgh
shivapatil54
 
Performance analysis and randamized agoritham
lilyMalar1
 
Kompleksitas Algoritma
Ajeng Savitri
 
algorithmanalysisinfundamentalsofdatastructure-190810085243.pptx
ShirishaBuduputi
 
Analyzing algorithms
Onkar Nath Sharma
 
Time andspacecomplexity
LAKSHMITHARUN PONNAM
 
Daa notes 1
smruti sarangi
 
Ad

Recently uploaded (20)

PPTX
Universal immunization Programme (UIP).pptx
Vishal Chanalia
 
PPTX
Soil and agriculture microbiology .pptx
Keerthana Ramesh
 
PPTX
HYDROCEPHALUS: NURSING MANAGEMENT .pptx
PRADEEP ABOTHU
 
PPTX
A PPT on Alfred Lord Tennyson's Ulysses.
Beena E S
 
PPSX
HEALTH ASSESSMENT (Community Health Nursing) - GNM 1st Year
Priyanshu Anand
 
PDF
LAW OF CONTRACT ( 5 YEAR LLB & UNITARY LLB)- MODULE-3 - LEARN THROUGH PICTURE
APARNA T SHAIL KUMAR
 
PPTX
BANDHA (BANDAGES) PPT.pptx ayurveda shalya tantra
rakhan78619
 
PPTX
THE TAME BIRD AND THE FREE BIRD.pptxxxxx
MarcChristianNicolas
 
PDF
0725.WHITEPAPER-UNIQUEWAYSOFPROTOTYPINGANDUXNOW.pdf
Thomas GIRARD, MA, CDP
 
PDF
ARAL-Orientation_Morning-Session_Day-11.pdf
JoelVilloso1
 
PDF
community health nursing question paper 2.pdf
Prince kumar
 
PPTX
SPINA BIFIDA: NURSING MANAGEMENT .pptx
PRADEEP ABOTHU
 
PPTX
STAFF DEVELOPMENT AND WELFARE: MANAGEMENT
PRADEEP ABOTHU
 
PDF
CEREBRAL PALSY: NURSING MANAGEMENT .pdf
PRADEEP ABOTHU
 
PPTX
Pyhton with Mysql to perform CRUD operations.pptx
Ramakrishna Reddy Bijjam
 
PPTX
How to Create a PDF Report in Odoo 18 - Odoo Slides
Celine George
 
PPTX
MENINGITIS: NURSING MANAGEMENT, BACTERIAL MENINGITIS, VIRAL MENINGITIS.pptx
PRADEEP ABOTHU
 
PDF
Lesson 2 - WATER,pH, BUFFERS, AND ACID-BASE.pdf
marvinnbustamante1
 
PPTX
How to Convert an Opportunity into a Quotation in Odoo 18 CRM
Celine George
 
PDF
LAW OF CONTRACT (5 YEAR LLB & UNITARY LLB )- MODULE - 1.& 2 - LEARN THROUGH P...
APARNA T SHAIL KUMAR
 
Universal immunization Programme (UIP).pptx
Vishal Chanalia
 
Soil and agriculture microbiology .pptx
Keerthana Ramesh
 
HYDROCEPHALUS: NURSING MANAGEMENT .pptx
PRADEEP ABOTHU
 
A PPT on Alfred Lord Tennyson's Ulysses.
Beena E S
 
HEALTH ASSESSMENT (Community Health Nursing) - GNM 1st Year
Priyanshu Anand
 
LAW OF CONTRACT ( 5 YEAR LLB & UNITARY LLB)- MODULE-3 - LEARN THROUGH PICTURE
APARNA T SHAIL KUMAR
 
BANDHA (BANDAGES) PPT.pptx ayurveda shalya tantra
rakhan78619
 
THE TAME BIRD AND THE FREE BIRD.pptxxxxx
MarcChristianNicolas
 
0725.WHITEPAPER-UNIQUEWAYSOFPROTOTYPINGANDUXNOW.pdf
Thomas GIRARD, MA, CDP
 
ARAL-Orientation_Morning-Session_Day-11.pdf
JoelVilloso1
 
community health nursing question paper 2.pdf
Prince kumar
 
SPINA BIFIDA: NURSING MANAGEMENT .pptx
PRADEEP ABOTHU
 
STAFF DEVELOPMENT AND WELFARE: MANAGEMENT
PRADEEP ABOTHU
 
CEREBRAL PALSY: NURSING MANAGEMENT .pdf
PRADEEP ABOTHU
 
Pyhton with Mysql to perform CRUD operations.pptx
Ramakrishna Reddy Bijjam
 
How to Create a PDF Report in Odoo 18 - Odoo Slides
Celine George
 
MENINGITIS: NURSING MANAGEMENT, BACTERIAL MENINGITIS, VIRAL MENINGITIS.pptx
PRADEEP ABOTHU
 
Lesson 2 - WATER,pH, BUFFERS, AND ACID-BASE.pdf
marvinnbustamante1
 
How to Convert an Opportunity into a Quotation in Odoo 18 CRM
Celine George
 
LAW OF CONTRACT (5 YEAR LLB & UNITARY LLB )- MODULE - 1.& 2 - LEARN THROUGH P...
APARNA T SHAIL KUMAR
 

Complexity of Algorithm

  • 1. Bis illa -Ra a -Ra e m h-e hm n-e he m COMPLEXITY OF ALGORITHM AND COST_TIME TRADE OFF
  • 2. By Muhammad Muzammal E-Mail: [email protected]
  • 3. Intro uc n d tio Algorithm An algorithm is a finite set of well-defined instructions for accomplishing some task, which given an initial state, will terminate in a defined end-state.
  • 4. Complexity of algorithms Complexity of algorithms The complexity of an algorithm is a function f (n) which measures the time and space used by an algorithm in terms of input size n. In computer science, the complexity of an algorithm is a way to classify how efficient an algorithm is, compared to alternative ones. The focus is on how execution time increases with the data set to be processed. The computational complexity and efficient implementation of the algorithm are important in computing, and this depends on suitable data structures.
  • 5. Complexity of algorithms Description of Complexity Different algorithms may complete the same task with a different set of instructions in less or more time, space or effort than other. The analysis and study of algorithms is a discipline in Computer Science which has a strong mathematical background. It often relies on theoretical analysis of pseudo-code. To compare the efficiency of algorithms, we don't rely on abstract measures such as the time difference in running speed, since it too heavily relies on the processor power and other tasks running in parallel.
  • 6. Classes of complexity Polynomial time algorithms •(C) --- Constant time --- the time necessary to perform the algorithm does not change in response to the size of the problem. •(n) --- Linear time --- the time grows linearly with the size (n) of the problem. • (n2) --- Quadratic time --- the time grows quadratically with the size (n) of the problem
  • 7. Classes of complexity Sub-linear time algorithms • It grow slower than linear time algorithms • Super-polynomial time algorithms • It grows faster than polynomial time algorithms. • Exponential time --- the time required grows exponentially with the size of the problem.
  • 8. Example of finding the complexity of an algorithm BUBBLE SORT For ( int I = 0 ; I < 5 ; I ++ ) For ( int j = 0 ; j < 4 ; j ++ ) If (A [ j ] > A [ j + 1 ] ) { Temp = A [ j ] ; A [ j ] = A [ j+1 ] ; A [ j + 1 ] =Temp; }
  • 9. Complexity of Bubble Sort The time for assorting algorithm is measured in the number of the comparisons. The number of f(n) of comparisons in the bubble sort is easily computed. Specifically ,there are n-1 comparisons during the 1st pass , which places the largest element in the last position ; there are n-2 comparisons in the 2nd step, which places the 2nd largest element in the next –to- last position; and so on.. In other words, the time required to execute the bubble sort algorithm is proportional to n2, where n is the number of input items.
  • 10. Example of finding the complexity of an algorithm Linear Search Int array[10]={10,20,30,40,50,60,70,80,90,100}; Int I,n, Loc=-1; Cout<<“Enter the value to find “; Cin>>n; For(i=0;I<10;I++) if(array[I]==n) Loc=I; If(Loc==-1) Cout<<“Value not found”; Else Cout<<“The value”<<n<<“is found at index “<<Loc;
  • 11. Space-time tradeoff In computer science, a space-time tradeoff refers to a choice between algorithmic solutions of a data processing problem that allows one to derease the running time of an algorithmic solution by increasing the space to store the data and vice versa. The computation time can be reduced at the cost of increased memory use. As the relative costs of CPU cycles, RAM space, and hard drive space change — hard drive space has for some time been getting cheaper at a much faster rate than other components of computers, the appropriate choices for space-time tradeoffs have changed radically. Often, by exploiting a space-time tradeoff, a program can be made to run much faster.
  • 12. Space-time tradeoff A space-time tradeoff can be applied to the problem of data storage. If data is stored uncompressed, it takes more space but less time than if the data were stored compressed (since compressing the data reduces the amount of space it takes, but it takes time to run the compression algorithm). Depending on the particular instance of the problem, either way is practical.
  • 13. Continued… Larger code size can be traded for higher program speed when applying loop unwinding. This technique makes the code longer for each iteration of a loop, but saves the computation time required for jumping back to the beginning of the loop at the end of each iteration. Algorithms that make use of space-time tradeoffs to achieve better running times include the baby-step giant-step algorithm for calculating discrete logarithms
  • 14. Using Genetic Algorithms to Solve Construction Time-Cost Trade-Off Problems Existing methods for time-cost trade-off analysis focus on using heuristics or mathematical programming. These methods, however, are not efficient enough to solve large-scale CPM networks (hundreds of activities or more). Analogous to natural selection and genetics in reproduction, genetic algorithms (GAs) have been successfully adopted to solve many science and engineering problems and have proven to be an efficient means for searching optimal solutions in a large problem domain computer program that can execute the algorithm efficiently.