SlideShare ist ein Scribd-Unternehmen logo
1 von 52
Downloaden Sie, um offline zu lesen
Introduction to Algorithms
      6.046J/18.401J
                         LECTURE 1
                         Analysis of Algorithms
                         • Insertion sort
                         • Asymptotic analysis
                         • Merge sort
                         • Recurrences


   Prof. Charles E. Leiserson
    Copyright © 2001-5 Erik D. Demaine and Charles E. Leiserson
Course information

1.    Staff                    8.      Course website
2.    Distance learning        9.      Extra help
3.    Prerequisites            10.     Registration
4.    Lectures                 11.     Problem sets
5.    Recitations              12.     Describing algorithms
6.    Handouts                 13.     Grading policy
7.    Textbook                 14.     Collaboration policy




September 7, 2005    Introduction to Algorithms           L1.2
Analysis of algorithms
   The theoretical study of computer-program
   performance and resource usage.
   What’s more important than performance?
    • modularity       • user-friendliness
    • correctness      • programmer time
    • maintainability  • simplicity
    • functionality    • extensibility
    • robustness       • reliability

                    Copyright © 2001-5 Erik D. Demaine and Charles E. Leiserson
September 7, 2005                  Introduction to Algorithms                     L1.3
Why study algorithms and
          performance?
• Algorithms help us to understand scalability.
• Performance often draws the line between what
  is feasible and what is impossible.
• Algorithmic mathematics provides a language
  for talking about program behavior.
• Performance is the currency of computing.
• The lessons of program performance generalize
  to other computing resources.
• Speed is fun!
                     Copyright © 2001-5 Erik D. Demaine and Charles E. Leiserson
 September 7, 2005                  Introduction to Algorithms                     L1.4
The problem of sorting

Input: sequence 〈a1, a2, …, an〉 of numbers.

Output: permutation 〈a'1, a'2, …, a'n〉 such
that a'1 ≤ a'2 ≤ … ≤ a'n .

                    Example:
                      Input: 8 2 4 9 3 6
                        Output: 2 3 4 6 8 9
                    Copyright © 2001-5 Erik D. Demaine and Charles E. Leiserson
September 7, 2005                  Introduction to Algorithms                     L1.5
Insertion sort
                                  INSERTION-SORT (A, n)     ⊳ A[1 . . n]
                                     for j ← 2 to n
                                           do key ← A[ j]
                                              i←j–1
“pseudocode”                                  while i > 0 and A[i] > key
                                                    do A[i+1] ← A[i]
                                                       i←i–1
                                              A[i+1] = key




                    Copyright © 2001-5 Erik D. Demaine and Charles E. Leiserson
September 7, 2005                  Introduction to Algorithms                     L1.6
Insertion sort
                                  INSERTION-SORT (A, n)     ⊳ A[1 . . n]
                                     for j ← 2 to n
                                           do key ← A[ j]
                                              i←j–1
“pseudocode”                                  while i > 0 and A[i] > key
                                                    do A[i+1] ← A[i]
                                                       i←i–1
                                              A[i+1] = key
              1             i                      j                              n
   A:
                                               key
                     sorted
                    Copyright © 2001-5 Erik D. Demaine and Charles E. Leiserson
September 7, 2005                  Introduction to Algorithms                         L1.7
Example of insertion sort
                    8           2            4             9             3            6




                        Copyright © 2001-5 Erik D. Demaine and Charles E. Leiserson
September 7, 2005                      Introduction to Algorithms                         L1.8
Example of insertion sort
                    8           2            4             9             3            6




                        Copyright © 2001-5 Erik D. Demaine and Charles E. Leiserson
September 7, 2005                      Introduction to Algorithms                         L1.9
Example of insertion sort
                    8           2            4             9             3            6
                    2           8            4             9             3            6




                        Copyright © 2001-5 Erik D. Demaine and Charles E. Leiserson
September 7, 2005                      Introduction to Algorithms                         L1.10
Example of insertion sort
                    8           2            4             9             3            6
                    2           8            4             9             3            6




                        Copyright © 2001-5 Erik D. Demaine and Charles E. Leiserson
September 7, 2005                      Introduction to Algorithms                         L1.11
Example of insertion sort
                    8           2            4             9             3            6
                    2           8            4             9             3            6
                    2           4            8             9             3            6




                        Copyright © 2001-5 Erik D. Demaine and Charles E. Leiserson
September 7, 2005                      Introduction to Algorithms                         L1.12
Example of insertion sort
                    8           2            4             9             3            6
                    2           8            4             9             3            6
                    2           4            8             9             3            6




                        Copyright © 2001-5 Erik D. Demaine and Charles E. Leiserson
September 7, 2005                      Introduction to Algorithms                         L1.13
Example of insertion sort
                    8           2            4             9             3            6
                    2           8            4             9             3            6
                    2           4            8             9             3            6
                    2           4            8             9             3            6




                        Copyright © 2001-5 Erik D. Demaine and Charles E. Leiserson
September 7, 2005                      Introduction to Algorithms                         L1.14
Example of insertion sort
                    8           2            4             9             3            6
                    2           8            4             9             3            6
                    2           4            8             9             3            6
                    2           4            8             9             3            6




                        Copyright © 2001-5 Erik D. Demaine and Charles E. Leiserson
September 7, 2005                      Introduction to Algorithms                         L1.15
Example of insertion sort
                    8           2            4             9             3            6
                    2           8            4             9             3            6
                    2           4            8             9             3            6
                    2           4            8             9             3            6
                    2           3            4             8             9            6


                        Copyright © 2001-5 Erik D. Demaine and Charles E. Leiserson
September 7, 2005                      Introduction to Algorithms                         L1.16
Example of insertion sort
                    8           2            4             9             3            6
                    2           8            4             9             3            6
                    2           4            8             9             3            6
                    2           4            8             9             3            6
                    2           3            4             8             9            6


                        Copyright © 2001-5 Erik D. Demaine and Charles E. Leiserson
September 7, 2005                      Introduction to Algorithms                         L1.17
Example of insertion sort
                    8           2            4             9             3            6
                    2           8            4             9             3            6
                    2           4            8             9             3            6
                    2           4            8             9             3            6
                    2           3            4             8             9            6
                    2           3            4             6             8            9 done

                        Copyright © 2001-5 Erik D. Demaine and Charles E. Leiserson
September 7, 2005                      Introduction to Algorithms                          L1.18
Running time

• The running time depends on the input: an
  already sorted sequence is easier to sort.
• Parameterize the running time by the size of
  the input, since short sequences are easier to
  sort than long ones.
• Generally, we seek upper bounds on the
  running time, because everybody likes a
  guarantee.

                    Copyright © 2001-5 Erik D. Demaine and Charles E. Leiserson
September 7, 2005                  Introduction to Algorithms                     L1.19
Kinds of analyses
      Worst-case: (usually)
        • T(n) = maximum time of algorithm
          on any input of size n.
      Average-case: (sometimes)
        • T(n) = expected time of algorithm
          over all inputs of size n.
        • Need assumption of statistical
          distribution of inputs.
      Best-case: (bogus)
        • Cheat with a slow algorithm that
          works fast on some input.
                    Copyright © 2001-5 Erik D. Demaine and Charles E. Leiserson
September 7, 2005                  Introduction to Algorithms                     L1.20
Machine-independent time

  What is insertion sort’s worst-case time?
  • It depends on the speed of our computer:
      • relative speed (on the same machine),
      • absolute speed (on different machines).
  BIG IDEA:
  • Ignore machine-dependent constants.
  • Look at growth of T(n) as n → ∞ .
                    “Asymptotic Analysis”
                    Copyright © 2001-5 Erik D. Demaine and Charles E. Leiserson
September 7, 2005                  Introduction to Algorithms                     L1.21
Θ-notation

Math:
Θ(g(n)) = { f (n) : there exist positive constants c1, c2, and
                    n0 such that 0 ≤ c1 g(n) ≤ f (n) ≤ c2 g(n)
                    for all n ≥ n0 }
Engineering:
• Drop low-order terms; ignore leading constants.
• Example: 3n3 + 90n2 – 5n + 6046 = Θ(n3)


                      Copyright © 2001-5 Erik D. Demaine and Charles E. Leiserson
  September 7, 2005                  Introduction to Algorithms                     L1.22
Asymptotic performance
   When n gets large enough, a Θ(n2) algorithm
   always beats a Θ(n3) algorithm.
                                                         • We shouldn’t ignore
                                                           asymptotically slower
                                                           algorithms, however.
                                                         • Real-world design
                                                           situations often call for a
T(n)                                                       careful balancing of
                                                           engineering objectives.
                                                         • Asymptotic analysis is a
                                                           useful tool to help to
                        n          n0                      structure our thinking.
                       Copyright © 2001-5 Erik D. Demaine and Charles E. Leiserson
   September 7, 2005                  Introduction to Algorithms                     L1.23
Insertion sort analysis
Worst case: Input reverse sorted.
                     n
     T ( n) =       ∑ Θ( j ) = Θ(n 2 )                            [arithmetic series]
                    j =2
Average case: All permutations equally likely.
                     n
     T ( n) =       ∑ Θ( j / 2) = Θ(n 2 )
                    j =2
Is insertion sort a fast sorting algorithm?
• Moderately so, for small n.
• Not at all, for large n.
                     Copyright © 2001-5 Erik D. Demaine and Charles E. Leiserson
September 7, 2005                   Introduction to Algorithms                     L1.24
Merge sort

         MERGE-SORT A[1 . . n]
           1. If n = 1, done.
           2. Recursively sort A[ 1 . . ⎡n/2⎤ ]
              and A[ ⎡n/2⎤+1 . . n ] .
           3. “Merge” the 2 sorted lists.

                    Key subroutine: MERGE


                    Copyright © 2001-5 Erik D. Demaine and Charles E. Leiserson
September 7, 2005                  Introduction to Algorithms                     L1.25
Merging two sorted arrays
20 12
13 11
7       9
2       1




                        Copyright © 2001-5 Erik D. Demaine and Charles E. Leiserson
    September 7, 2005                  Introduction to Algorithms                     L1.26
Merging two sorted arrays
20 12
13 11
7       9
2       1

    1




                        Copyright © 2001-5 Erik D. Demaine and Charles E. Leiserson
    September 7, 2005                  Introduction to Algorithms                     L1.27
Merging two sorted arrays
20 12             20 12
13 11             13 11
7       9          7    9
2       1          2

    1




                        Copyright © 2001-5 Erik D. Demaine and Charles E. Leiserson
    September 7, 2005                  Introduction to Algorithms                     L1.28
Merging two sorted arrays
20 12             20 12
13 11             13 11
7       9          7        9
2       1          2

    1                   2




                            Copyright © 2001-5 Erik D. Demaine and Charles E. Leiserson
    September 7, 2005                      Introduction to Algorithms                     L1.29
Merging two sorted arrays
20 12             20 12                 20 12
13 11             13 11                 13 11
7       9          7        9            7       9
2       1          2

    1                   2




                            Copyright © 2001-5 Erik D. Demaine and Charles E. Leiserson
    September 7, 2005                      Introduction to Algorithms                     L1.30
Merging two sorted arrays
20 12             20 12                 20 12
13 11             13 11                 13 11
7       9          7        9            7       9
2       1          2

    1                   2                    7




                            Copyright © 2001-5 Erik D. Demaine and Charles E. Leiserson
    September 7, 2005                      Introduction to Algorithms                     L1.31
Merging two sorted arrays
20 12             20 12                 20 12                 20 12
13 11             13 11                 13 11                 13 11
7       9          7        9            7       9                     9
2       1          2

    1                   2                    7




                            Copyright © 2001-5 Erik D. Demaine and Charles E. Leiserson
    September 7, 2005                      Introduction to Algorithms                     L1.32
Merging two sorted arrays
20 12             20 12                 20 12                 20 12
13 11             13 11                 13 11                 13 11
7       9          7        9            7       9                     9
2       1          2

    1                   2                    7                     9




                            Copyright © 2001-5 Erik D. Demaine and Charles E. Leiserson
    September 7, 2005                      Introduction to Algorithms                     L1.33
Merging two sorted arrays
20 12             20 12                 20 12                 20 12                 20 12
13 11             13 11                 13 11                 13 11                 13 11
7       9          7        9            7       9                     9
2       1          2

    1                   2                    7                     9




                            Copyright © 2001-5 Erik D. Demaine and Charles E. Leiserson
    September 7, 2005                      Introduction to Algorithms                       L1.34
Merging two sorted arrays
20 12             20 12                 20 12                 20 12                 20 12
13 11             13 11                 13 11                 13 11                 13 11
7       9          7        9            7       9                     9
2       1          2

    1                   2                    7                     9                      11




                            Copyright © 2001-5 Erik D. Demaine and Charles E. Leiserson
    September 7, 2005                      Introduction to Algorithms                          L1.35
Merging two sorted arrays
20 12             20 12                 20 12                 20 12                 20 12      20 12
13 11             13 11                 13 11                 13 11                 13 11      13
7       9          7        9            7       9                     9
2       1          2

    1                   2                    7                     9                      11




                            Copyright © 2001-5 Erik D. Demaine and Charles E. Leiserson
    September 7, 2005                      Introduction to Algorithms                          L1.36
Merging two sorted arrays
20 12             20 12                 20 12                 20 12                 20 12      20 12
13 11             13 11                 13 11                 13 11                 13 11      13
7       9          7        9            7       9                     9
2       1          2

    1                   2                    7                     9                      11        12




                            Copyright © 2001-5 Erik D. Demaine and Charles E. Leiserson
    September 7, 2005                      Introduction to Algorithms                          L1.37
Merging two sorted arrays
20 12             20 12                 20 12                 20 12                 20 12      20 12
13 11             13 11                 13 11                 13 11                 13 11      13
7       9          7        9            7       9                     9
2       1          2

    1                   2                    7                     9                      11        12

                        Time = Θ(n) to merge a total
                         of n elements (linear time).
                            Copyright © 2001-5 Erik D. Demaine and Charles E. Leiserson
    September 7, 2005                      Introduction to Algorithms                          L1.38
Analyzing merge sort

      T(n)    MERGE-SORT A[1 . . n]
      Θ(1)    1. If n = 1, done.
      2T(n/2) 2. Recursively sort A[ 1 . . ⎡n/2⎤ ]
Abuse            and A[ ⎡n/2⎤+1 . . n ] .
      Θ(n)    3. “Merge” the 2 sorted lists
  Sloppiness: Should be T( ⎡n/2⎤ ) + T( ⎣n/2⎦ ) ,
  but it turns out not to matter asymptotically.

                      Copyright © 2001-5 Erik D. Demaine and Charles E. Leiserson
  September 7, 2005                  Introduction to Algorithms                     L1.39
Recurrence for merge sort
                              Θ(1) if n = 1;
             T(n) =
                              2T(n/2) + Θ(n) if n > 1.
  • We shall usually omit stating the base
    case when T(n) = Θ(1) for sufficiently
    small n, but only when it has no effect on
    the asymptotic solution to the recurrence.
  • CLRS and Lecture 2 provide several ways
    to find a good upper bound on T(n).

                    Copyright © 2001-5 Erik D. Demaine and Charles E. Leiserson
September 7, 2005                  Introduction to Algorithms                     L1.40
Recursion tree
Solve T(n) = 2T(n/2) + cn, where c > 0 is constant.




                      Copyright © 2001-5 Erik D. Demaine and Charles E. Leiserson
  September 7, 2005                  Introduction to Algorithms                     L1.41
Recursion tree
Solve T(n) = 2T(n/2) + cn, where c > 0 is constant.
                                              T(n)




                      Copyright © 2001-5 Erik D. Demaine and Charles E. Leiserson
  September 7, 2005                  Introduction to Algorithms                     L1.42
Recursion tree
Solve T(n) = 2T(n/2) + cn, where c > 0 is constant.
                        cn
                      T(n/2)                                        T(n/2)




                      Copyright © 2001-5 Erik D. Demaine and Charles E. Leiserson
  September 7, 2005                  Introduction to Algorithms                     L1.43
Recursion tree
Solve T(n) = 2T(n/2) + cn, where c > 0 is constant.
                        cn
                      cn/2                                            cn/2

            T(n/4)             T(n/4)                  T(n/4)                   T(n/4)




                      Copyright © 2001-5 Erik D. Demaine and Charles E. Leiserson
  September 7, 2005                  Introduction to Algorithms                          L1.44
Recursion tree
Solve T(n) = 2T(n/2) + cn, where c > 0 is constant.
                        cn
                      cn/2                                            cn/2

              cn/4                cn/4                   cn/4                       cn/4
           …




          Θ(1)

                      Copyright © 2001-5 Erik D. Demaine and Charles E. Leiserson
  September 7, 2005                  Introduction to Algorithms                            L1.45
Recursion tree
 Solve T(n) = 2T(n/2) + cn, where c > 0 is constant.
                         cn
                       cn/2                                            cn/2
h = lg n cn/4                      cn/4                   cn/4                       cn/4
            …




           Θ(1)

                       Copyright © 2001-5 Erik D. Demaine and Charles E. Leiserson
   September 7, 2005                  Introduction to Algorithms                            L1.46
Recursion tree
 Solve T(n) = 2T(n/2) + cn, where c > 0 is constant.
                         cn                     cn
                       cn/2                                            cn/2
h = lg n cn/4                      cn/4                   cn/4                       cn/4
            …




           Θ(1)

                       Copyright © 2001-5 Erik D. Demaine and Charles E. Leiserson
   September 7, 2005                  Introduction to Algorithms                            L1.47
Recursion tree
 Solve T(n) = 2T(n/2) + cn, where c > 0 is constant.
                         cn                     cn
                       cn/2                                            cn/2                  cn
h = lg n cn/4                      cn/4                   cn/4                       cn/4
            …




           Θ(1)

                       Copyright © 2001-5 Erik D. Demaine and Charles E. Leiserson
   September 7, 2005                  Introduction to Algorithms                            L1.48
Recursion tree
 Solve T(n) = 2T(n/2) + cn, where c > 0 is constant.
                         cn                     cn
                       cn/2                                            cn/2                  cn
h = lg n cn/4                      cn/4                   cn/4                       cn/4    cn
            …




                                                                                            …
           Θ(1)

                       Copyright © 2001-5 Erik D. Demaine and Charles E. Leiserson
   September 7, 2005                  Introduction to Algorithms                            L1.49
Recursion tree
 Solve T(n) = 2T(n/2) + cn, where c > 0 is constant.
                         cn                     cn
                       cn/2                                            cn/2                  cn
h = lg n cn/4                      cn/4                   cn/4                       cn/4    cn
            …




                                                                                            …
           Θ(1)                       #leaves = n                                           Θ(n)

                       Copyright © 2001-5 Erik D. Demaine and Charles E. Leiserson
   September 7, 2005                  Introduction to Algorithms                            L1.50
Recursion tree
 Solve T(n) = 2T(n/2) + cn, where c > 0 is constant.
                         cn                     cn
                       cn/2                                            cn/2                  cn
h = lg n cn/4                      cn/4                   cn/4                       cn/4    cn
            …




                                                                                            …
           Θ(1)                       #leaves = n                                           Θ(n)
                                                                            Total = Θ(n lg n)
                       Copyright © 2001-5 Erik D. Demaine and Charles E. Leiserson
   September 7, 2005                  Introduction to Algorithms                            L1.51
Conclusions

   • Θ(n lg n) grows more slowly than Θ(n2).
   • Therefore, merge sort asymptotically
     beats insertion sort in the worst case.
   • In practice, merge sort beats insertion
     sort for n > 30 or so.
   • Go test it out for yourself!



                    Copyright © 2001-5 Erik D. Demaine and Charles E. Leiserson
September 7, 2005                  Introduction to Algorithms                     L1.52

Weitere ähnliche Inhalte

Andere mochten auch

Lec2 Algorth
Lec2 AlgorthLec2 Algorth
Lec2 Algorthhumanist3
 
Big data lecture notes
Big data lecture notesBig data lecture notes
Big data lecture notesMohit Saini
 
Computer Networks Lecture Notes
Computer Networks Lecture NotesComputer Networks Lecture Notes
Computer Networks Lecture NotesFellowBuddy.com
 
An introduction to M2M / IoT technologies
An introduction to M2M / IoT technologiesAn introduction to M2M / IoT technologies
An introduction to M2M / IoT technologiesPascal Bodin
 
Internet of Things for Smart Cities
Internet of Things for Smart CitiesInternet of Things for Smart Cities
Internet of Things for Smart CitiesMphasis
 
IoT(Internet of Things) Platform Connectivity Technologies and Key Patents
IoT(Internet of Things) Platform Connectivity Technologies and Key PatentsIoT(Internet of Things) Platform Connectivity Technologies and Key Patents
IoT(Internet of Things) Platform Connectivity Technologies and Key PatentsAlex G. Lee, Ph.D. Esq. CLP
 
Iot for smart city
Iot for smart cityIot for smart city
Iot for smart citysanalkumar k
 
Internet-of-things- (IOT) - a-seminar - ppt - by- mohan-kumar-g
Internet-of-things- (IOT) - a-seminar - ppt - by- mohan-kumar-gInternet-of-things- (IOT) - a-seminar - ppt - by- mohan-kumar-g
Internet-of-things- (IOT) - a-seminar - ppt - by- mohan-kumar-gMohan Kumar G
 
IoT - IT 423 ppt
IoT - IT 423 pptIoT - IT 423 ppt
IoT - IT 423 pptMhae Lyn
 

Andere mochten auch (11)

Lec2 Algorth
Lec2 AlgorthLec2 Algorth
Lec2 Algorth
 
Advance Network Technologies
Advance Network TechnologiesAdvance Network Technologies
Advance Network Technologies
 
Big data lecture notes
Big data lecture notesBig data lecture notes
Big data lecture notes
 
Computer Networks Lecture Notes
Computer Networks Lecture NotesComputer Networks Lecture Notes
Computer Networks Lecture Notes
 
6lowpan
6lowpan6lowpan
6lowpan
 
An introduction to M2M / IoT technologies
An introduction to M2M / IoT technologiesAn introduction to M2M / IoT technologies
An introduction to M2M / IoT technologies
 
Internet of Things for Smart Cities
Internet of Things for Smart CitiesInternet of Things for Smart Cities
Internet of Things for Smart Cities
 
IoT(Internet of Things) Platform Connectivity Technologies and Key Patents
IoT(Internet of Things) Platform Connectivity Technologies and Key PatentsIoT(Internet of Things) Platform Connectivity Technologies and Key Patents
IoT(Internet of Things) Platform Connectivity Technologies and Key Patents
 
Iot for smart city
Iot for smart cityIot for smart city
Iot for smart city
 
Internet-of-things- (IOT) - a-seminar - ppt - by- mohan-kumar-g
Internet-of-things- (IOT) - a-seminar - ppt - by- mohan-kumar-gInternet-of-things- (IOT) - a-seminar - ppt - by- mohan-kumar-g
Internet-of-things- (IOT) - a-seminar - ppt - by- mohan-kumar-g
 
IoT - IT 423 ppt
IoT - IT 423 pptIoT - IT 423 ppt
IoT - IT 423 ppt
 

Mehr von humanist3

Whizle For Learners
Whizle For LearnersWhizle For Learners
Whizle For Learnershumanist3
 
Whizle Edu Scenario
Whizle Edu ScenarioWhizle Edu Scenario
Whizle Edu Scenariohumanist3
 
Lecture1webhand
Lecture1webhandLecture1webhand
Lecture1webhandhumanist3
 
Control of Manufacturing Processes
Control of Manufacturing ProcessesControl of Manufacturing Processes
Control of Manufacturing Processeshumanist3
 

Mehr von humanist3 (7)

Whizle For Learners
Whizle For LearnersWhizle For Learners
Whizle For Learners
 
Whizle Edu Scenario
Whizle Edu ScenarioWhizle Edu Scenario
Whizle Edu Scenario
 
Whizle U
Whizle UWhizle U
Whizle U
 
Lec3 Algott
Lec3 AlgottLec3 Algott
Lec3 Algott
 
Lecture1webhand
Lecture1webhandLecture1webhand
Lecture1webhand
 
Whizle Demo
Whizle DemoWhizle Demo
Whizle Demo
 
Control of Manufacturing Processes
Control of Manufacturing ProcessesControl of Manufacturing Processes
Control of Manufacturing Processes
 

Kürzlich hochgeladen

1029 - Danh muc Sach Giao Khoa 10 . pdf
1029 -  Danh muc Sach Giao Khoa 10 . pdf1029 -  Danh muc Sach Giao Khoa 10 . pdf
1029 - Danh muc Sach Giao Khoa 10 . pdfQucHHunhnh
 
BASLIQ CURRENT LOOKBOOK LOOKBOOK(1) (1).pdf
BASLIQ CURRENT LOOKBOOK  LOOKBOOK(1) (1).pdfBASLIQ CURRENT LOOKBOOK  LOOKBOOK(1) (1).pdf
BASLIQ CURRENT LOOKBOOK LOOKBOOK(1) (1).pdfSoniaTolstoy
 
A Critique of the Proposed National Education Policy Reform
A Critique of the Proposed National Education Policy ReformA Critique of the Proposed National Education Policy Reform
A Critique of the Proposed National Education Policy ReformChameera Dedduwage
 
Interactive Powerpoint_How to Master effective communication
Interactive Powerpoint_How to Master effective communicationInteractive Powerpoint_How to Master effective communication
Interactive Powerpoint_How to Master effective communicationnomboosow
 
General AI for Medical Educators April 2024
General AI for Medical Educators April 2024General AI for Medical Educators April 2024
General AI for Medical Educators April 2024Janet Corral
 
Grant Readiness 101 TechSoup and Remy Consulting
Grant Readiness 101 TechSoup and Remy ConsultingGrant Readiness 101 TechSoup and Remy Consulting
Grant Readiness 101 TechSoup and Remy ConsultingTechSoup
 
Beyond the EU: DORA and NIS 2 Directive's Global Impact
Beyond the EU: DORA and NIS 2 Directive's Global ImpactBeyond the EU: DORA and NIS 2 Directive's Global Impact
Beyond the EU: DORA and NIS 2 Directive's Global ImpactPECB
 
Arihant handbook biology for class 11 .pdf
Arihant handbook biology for class 11 .pdfArihant handbook biology for class 11 .pdf
Arihant handbook biology for class 11 .pdfchloefrazer622
 
1029-Danh muc Sach Giao Khoa khoi 6.pdf
1029-Danh muc Sach Giao Khoa khoi  6.pdf1029-Danh muc Sach Giao Khoa khoi  6.pdf
1029-Danh muc Sach Giao Khoa khoi 6.pdfQucHHunhnh
 
Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...
Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...
Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...christianmathematics
 
microwave assisted reaction. General introduction
microwave assisted reaction. General introductionmicrowave assisted reaction. General introduction
microwave assisted reaction. General introductionMaksud Ahmed
 
IGNOU MSCCFT and PGDCFT Exam Question Pattern: MCFT003 Counselling and Family...
IGNOU MSCCFT and PGDCFT Exam Question Pattern: MCFT003 Counselling and Family...IGNOU MSCCFT and PGDCFT Exam Question Pattern: MCFT003 Counselling and Family...
IGNOU MSCCFT and PGDCFT Exam Question Pattern: MCFT003 Counselling and Family...PsychoTech Services
 
The basics of sentences session 2pptx copy.pptx
The basics of sentences session 2pptx copy.pptxThe basics of sentences session 2pptx copy.pptx
The basics of sentences session 2pptx copy.pptxheathfieldcps1
 
Disha NEET Physics Guide for classes 11 and 12.pdf
Disha NEET Physics Guide for classes 11 and 12.pdfDisha NEET Physics Guide for classes 11 and 12.pdf
Disha NEET Physics Guide for classes 11 and 12.pdfchloefrazer622
 
Student login on Anyboli platform.helpin
Student login on Anyboli platform.helpinStudent login on Anyboli platform.helpin
Student login on Anyboli platform.helpinRaunakKeshri1
 
Activity 01 - Artificial Culture (1).pdf
Activity 01 - Artificial Culture (1).pdfActivity 01 - Artificial Culture (1).pdf
Activity 01 - Artificial Culture (1).pdfciinovamais
 
Paris 2024 Olympic Geographies - an activity
Paris 2024 Olympic Geographies - an activityParis 2024 Olympic Geographies - an activity
Paris 2024 Olympic Geographies - an activityGeoBlogs
 
Software Engineering Methodologies (overview)
Software Engineering Methodologies (overview)Software Engineering Methodologies (overview)
Software Engineering Methodologies (overview)eniolaolutunde
 

Kürzlich hochgeladen (20)

1029 - Danh muc Sach Giao Khoa 10 . pdf
1029 -  Danh muc Sach Giao Khoa 10 . pdf1029 -  Danh muc Sach Giao Khoa 10 . pdf
1029 - Danh muc Sach Giao Khoa 10 . pdf
 
BASLIQ CURRENT LOOKBOOK LOOKBOOK(1) (1).pdf
BASLIQ CURRENT LOOKBOOK  LOOKBOOK(1) (1).pdfBASLIQ CURRENT LOOKBOOK  LOOKBOOK(1) (1).pdf
BASLIQ CURRENT LOOKBOOK LOOKBOOK(1) (1).pdf
 
A Critique of the Proposed National Education Policy Reform
A Critique of the Proposed National Education Policy ReformA Critique of the Proposed National Education Policy Reform
A Critique of the Proposed National Education Policy Reform
 
Interactive Powerpoint_How to Master effective communication
Interactive Powerpoint_How to Master effective communicationInteractive Powerpoint_How to Master effective communication
Interactive Powerpoint_How to Master effective communication
 
INDIA QUIZ 2024 RLAC DELHI UNIVERSITY.pptx
INDIA QUIZ 2024 RLAC DELHI UNIVERSITY.pptxINDIA QUIZ 2024 RLAC DELHI UNIVERSITY.pptx
INDIA QUIZ 2024 RLAC DELHI UNIVERSITY.pptx
 
General AI for Medical Educators April 2024
General AI for Medical Educators April 2024General AI for Medical Educators April 2024
General AI for Medical Educators April 2024
 
Grant Readiness 101 TechSoup and Remy Consulting
Grant Readiness 101 TechSoup and Remy ConsultingGrant Readiness 101 TechSoup and Remy Consulting
Grant Readiness 101 TechSoup and Remy Consulting
 
Beyond the EU: DORA and NIS 2 Directive's Global Impact
Beyond the EU: DORA and NIS 2 Directive's Global ImpactBeyond the EU: DORA and NIS 2 Directive's Global Impact
Beyond the EU: DORA and NIS 2 Directive's Global Impact
 
Mattingly "AI & Prompt Design: The Basics of Prompt Design"
Mattingly "AI & Prompt Design: The Basics of Prompt Design"Mattingly "AI & Prompt Design: The Basics of Prompt Design"
Mattingly "AI & Prompt Design: The Basics of Prompt Design"
 
Arihant handbook biology for class 11 .pdf
Arihant handbook biology for class 11 .pdfArihant handbook biology for class 11 .pdf
Arihant handbook biology for class 11 .pdf
 
1029-Danh muc Sach Giao Khoa khoi 6.pdf
1029-Danh muc Sach Giao Khoa khoi  6.pdf1029-Danh muc Sach Giao Khoa khoi  6.pdf
1029-Danh muc Sach Giao Khoa khoi 6.pdf
 
Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...
Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...
Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...
 
microwave assisted reaction. General introduction
microwave assisted reaction. General introductionmicrowave assisted reaction. General introduction
microwave assisted reaction. General introduction
 
IGNOU MSCCFT and PGDCFT Exam Question Pattern: MCFT003 Counselling and Family...
IGNOU MSCCFT and PGDCFT Exam Question Pattern: MCFT003 Counselling and Family...IGNOU MSCCFT and PGDCFT Exam Question Pattern: MCFT003 Counselling and Family...
IGNOU MSCCFT and PGDCFT Exam Question Pattern: MCFT003 Counselling and Family...
 
The basics of sentences session 2pptx copy.pptx
The basics of sentences session 2pptx copy.pptxThe basics of sentences session 2pptx copy.pptx
The basics of sentences session 2pptx copy.pptx
 
Disha NEET Physics Guide for classes 11 and 12.pdf
Disha NEET Physics Guide for classes 11 and 12.pdfDisha NEET Physics Guide for classes 11 and 12.pdf
Disha NEET Physics Guide for classes 11 and 12.pdf
 
Student login on Anyboli platform.helpin
Student login on Anyboli platform.helpinStudent login on Anyboli platform.helpin
Student login on Anyboli platform.helpin
 
Activity 01 - Artificial Culture (1).pdf
Activity 01 - Artificial Culture (1).pdfActivity 01 - Artificial Culture (1).pdf
Activity 01 - Artificial Culture (1).pdf
 
Paris 2024 Olympic Geographies - an activity
Paris 2024 Olympic Geographies - an activityParis 2024 Olympic Geographies - an activity
Paris 2024 Olympic Geographies - an activity
 
Software Engineering Methodologies (overview)
Software Engineering Methodologies (overview)Software Engineering Methodologies (overview)
Software Engineering Methodologies (overview)
 

Lec1 Algorthm

  • 1. Introduction to Algorithms 6.046J/18.401J LECTURE 1 Analysis of Algorithms • Insertion sort • Asymptotic analysis • Merge sort • Recurrences Prof. Charles E. Leiserson Copyright © 2001-5 Erik D. Demaine and Charles E. Leiserson
  • 2. Course information 1. Staff 8. Course website 2. Distance learning 9. Extra help 3. Prerequisites 10. Registration 4. Lectures 11. Problem sets 5. Recitations 12. Describing algorithms 6. Handouts 13. Grading policy 7. Textbook 14. Collaboration policy September 7, 2005 Introduction to Algorithms L1.2
  • 3. Analysis of algorithms The theoretical study of computer-program performance and resource usage. What’s more important than performance? • modularity • user-friendliness • correctness • programmer time • maintainability • simplicity • functionality • extensibility • robustness • reliability Copyright © 2001-5 Erik D. Demaine and Charles E. Leiserson September 7, 2005 Introduction to Algorithms L1.3
  • 4. Why study algorithms and performance? • Algorithms help us to understand scalability. • Performance often draws the line between what is feasible and what is impossible. • Algorithmic mathematics provides a language for talking about program behavior. • Performance is the currency of computing. • The lessons of program performance generalize to other computing resources. • Speed is fun! Copyright © 2001-5 Erik D. Demaine and Charles E. Leiserson September 7, 2005 Introduction to Algorithms L1.4
  • 5. The problem of sorting Input: sequence 〈a1, a2, …, an〉 of numbers. Output: permutation 〈a'1, a'2, …, a'n〉 such that a'1 ≤ a'2 ≤ … ≤ a'n . Example: Input: 8 2 4 9 3 6 Output: 2 3 4 6 8 9 Copyright © 2001-5 Erik D. Demaine and Charles E. Leiserson September 7, 2005 Introduction to Algorithms L1.5
  • 6. Insertion sort INSERTION-SORT (A, n) ⊳ A[1 . . n] for j ← 2 to n do key ← A[ j] i←j–1 “pseudocode” while i > 0 and A[i] > key do A[i+1] ← A[i] i←i–1 A[i+1] = key Copyright © 2001-5 Erik D. Demaine and Charles E. Leiserson September 7, 2005 Introduction to Algorithms L1.6
  • 7. Insertion sort INSERTION-SORT (A, n) ⊳ A[1 . . n] for j ← 2 to n do key ← A[ j] i←j–1 “pseudocode” while i > 0 and A[i] > key do A[i+1] ← A[i] i←i–1 A[i+1] = key 1 i j n A: key sorted Copyright © 2001-5 Erik D. Demaine and Charles E. Leiserson September 7, 2005 Introduction to Algorithms L1.7
  • 8. Example of insertion sort 8 2 4 9 3 6 Copyright © 2001-5 Erik D. Demaine and Charles E. Leiserson September 7, 2005 Introduction to Algorithms L1.8
  • 9. Example of insertion sort 8 2 4 9 3 6 Copyright © 2001-5 Erik D. Demaine and Charles E. Leiserson September 7, 2005 Introduction to Algorithms L1.9
  • 10. Example of insertion sort 8 2 4 9 3 6 2 8 4 9 3 6 Copyright © 2001-5 Erik D. Demaine and Charles E. Leiserson September 7, 2005 Introduction to Algorithms L1.10
  • 11. Example of insertion sort 8 2 4 9 3 6 2 8 4 9 3 6 Copyright © 2001-5 Erik D. Demaine and Charles E. Leiserson September 7, 2005 Introduction to Algorithms L1.11
  • 12. Example of insertion sort 8 2 4 9 3 6 2 8 4 9 3 6 2 4 8 9 3 6 Copyright © 2001-5 Erik D. Demaine and Charles E. Leiserson September 7, 2005 Introduction to Algorithms L1.12
  • 13. Example of insertion sort 8 2 4 9 3 6 2 8 4 9 3 6 2 4 8 9 3 6 Copyright © 2001-5 Erik D. Demaine and Charles E. Leiserson September 7, 2005 Introduction to Algorithms L1.13
  • 14. Example of insertion sort 8 2 4 9 3 6 2 8 4 9 3 6 2 4 8 9 3 6 2 4 8 9 3 6 Copyright © 2001-5 Erik D. Demaine and Charles E. Leiserson September 7, 2005 Introduction to Algorithms L1.14
  • 15. Example of insertion sort 8 2 4 9 3 6 2 8 4 9 3 6 2 4 8 9 3 6 2 4 8 9 3 6 Copyright © 2001-5 Erik D. Demaine and Charles E. Leiserson September 7, 2005 Introduction to Algorithms L1.15
  • 16. Example of insertion sort 8 2 4 9 3 6 2 8 4 9 3 6 2 4 8 9 3 6 2 4 8 9 3 6 2 3 4 8 9 6 Copyright © 2001-5 Erik D. Demaine and Charles E. Leiserson September 7, 2005 Introduction to Algorithms L1.16
  • 17. Example of insertion sort 8 2 4 9 3 6 2 8 4 9 3 6 2 4 8 9 3 6 2 4 8 9 3 6 2 3 4 8 9 6 Copyright © 2001-5 Erik D. Demaine and Charles E. Leiserson September 7, 2005 Introduction to Algorithms L1.17
  • 18. Example of insertion sort 8 2 4 9 3 6 2 8 4 9 3 6 2 4 8 9 3 6 2 4 8 9 3 6 2 3 4 8 9 6 2 3 4 6 8 9 done Copyright © 2001-5 Erik D. Demaine and Charles E. Leiserson September 7, 2005 Introduction to Algorithms L1.18
  • 19. Running time • The running time depends on the input: an already sorted sequence is easier to sort. • Parameterize the running time by the size of the input, since short sequences are easier to sort than long ones. • Generally, we seek upper bounds on the running time, because everybody likes a guarantee. Copyright © 2001-5 Erik D. Demaine and Charles E. Leiserson September 7, 2005 Introduction to Algorithms L1.19
  • 20. Kinds of analyses Worst-case: (usually) • T(n) = maximum time of algorithm on any input of size n. Average-case: (sometimes) • T(n) = expected time of algorithm over all inputs of size n. • Need assumption of statistical distribution of inputs. Best-case: (bogus) • Cheat with a slow algorithm that works fast on some input. Copyright © 2001-5 Erik D. Demaine and Charles E. Leiserson September 7, 2005 Introduction to Algorithms L1.20
  • 21. Machine-independent time What is insertion sort’s worst-case time? • It depends on the speed of our computer: • relative speed (on the same machine), • absolute speed (on different machines). BIG IDEA: • Ignore machine-dependent constants. • Look at growth of T(n) as n → ∞ . “Asymptotic Analysis” Copyright © 2001-5 Erik D. Demaine and Charles E. Leiserson September 7, 2005 Introduction to Algorithms L1.21
  • 22. Θ-notation Math: Θ(g(n)) = { f (n) : there exist positive constants c1, c2, and n0 such that 0 ≤ c1 g(n) ≤ f (n) ≤ c2 g(n) for all n ≥ n0 } Engineering: • Drop low-order terms; ignore leading constants. • Example: 3n3 + 90n2 – 5n + 6046 = Θ(n3) Copyright © 2001-5 Erik D. Demaine and Charles E. Leiserson September 7, 2005 Introduction to Algorithms L1.22
  • 23. Asymptotic performance When n gets large enough, a Θ(n2) algorithm always beats a Θ(n3) algorithm. • We shouldn’t ignore asymptotically slower algorithms, however. • Real-world design situations often call for a T(n) careful balancing of engineering objectives. • Asymptotic analysis is a useful tool to help to n n0 structure our thinking. Copyright © 2001-5 Erik D. Demaine and Charles E. Leiserson September 7, 2005 Introduction to Algorithms L1.23
  • 24. Insertion sort analysis Worst case: Input reverse sorted. n T ( n) = ∑ Θ( j ) = Θ(n 2 ) [arithmetic series] j =2 Average case: All permutations equally likely. n T ( n) = ∑ Θ( j / 2) = Θ(n 2 ) j =2 Is insertion sort a fast sorting algorithm? • Moderately so, for small n. • Not at all, for large n. Copyright © 2001-5 Erik D. Demaine and Charles E. Leiserson September 7, 2005 Introduction to Algorithms L1.24
  • 25. Merge sort MERGE-SORT A[1 . . n] 1. If n = 1, done. 2. Recursively sort A[ 1 . . ⎡n/2⎤ ] and A[ ⎡n/2⎤+1 . . n ] . 3. “Merge” the 2 sorted lists. Key subroutine: MERGE Copyright © 2001-5 Erik D. Demaine and Charles E. Leiserson September 7, 2005 Introduction to Algorithms L1.25
  • 26. Merging two sorted arrays 20 12 13 11 7 9 2 1 Copyright © 2001-5 Erik D. Demaine and Charles E. Leiserson September 7, 2005 Introduction to Algorithms L1.26
  • 27. Merging two sorted arrays 20 12 13 11 7 9 2 1 1 Copyright © 2001-5 Erik D. Demaine and Charles E. Leiserson September 7, 2005 Introduction to Algorithms L1.27
  • 28. Merging two sorted arrays 20 12 20 12 13 11 13 11 7 9 7 9 2 1 2 1 Copyright © 2001-5 Erik D. Demaine and Charles E. Leiserson September 7, 2005 Introduction to Algorithms L1.28
  • 29. Merging two sorted arrays 20 12 20 12 13 11 13 11 7 9 7 9 2 1 2 1 2 Copyright © 2001-5 Erik D. Demaine and Charles E. Leiserson September 7, 2005 Introduction to Algorithms L1.29
  • 30. Merging two sorted arrays 20 12 20 12 20 12 13 11 13 11 13 11 7 9 7 9 7 9 2 1 2 1 2 Copyright © 2001-5 Erik D. Demaine and Charles E. Leiserson September 7, 2005 Introduction to Algorithms L1.30
  • 31. Merging two sorted arrays 20 12 20 12 20 12 13 11 13 11 13 11 7 9 7 9 7 9 2 1 2 1 2 7 Copyright © 2001-5 Erik D. Demaine and Charles E. Leiserson September 7, 2005 Introduction to Algorithms L1.31
  • 32. Merging two sorted arrays 20 12 20 12 20 12 20 12 13 11 13 11 13 11 13 11 7 9 7 9 7 9 9 2 1 2 1 2 7 Copyright © 2001-5 Erik D. Demaine and Charles E. Leiserson September 7, 2005 Introduction to Algorithms L1.32
  • 33. Merging two sorted arrays 20 12 20 12 20 12 20 12 13 11 13 11 13 11 13 11 7 9 7 9 7 9 9 2 1 2 1 2 7 9 Copyright © 2001-5 Erik D. Demaine and Charles E. Leiserson September 7, 2005 Introduction to Algorithms L1.33
  • 34. Merging two sorted arrays 20 12 20 12 20 12 20 12 20 12 13 11 13 11 13 11 13 11 13 11 7 9 7 9 7 9 9 2 1 2 1 2 7 9 Copyright © 2001-5 Erik D. Demaine and Charles E. Leiserson September 7, 2005 Introduction to Algorithms L1.34
  • 35. Merging two sorted arrays 20 12 20 12 20 12 20 12 20 12 13 11 13 11 13 11 13 11 13 11 7 9 7 9 7 9 9 2 1 2 1 2 7 9 11 Copyright © 2001-5 Erik D. Demaine and Charles E. Leiserson September 7, 2005 Introduction to Algorithms L1.35
  • 36. Merging two sorted arrays 20 12 20 12 20 12 20 12 20 12 20 12 13 11 13 11 13 11 13 11 13 11 13 7 9 7 9 7 9 9 2 1 2 1 2 7 9 11 Copyright © 2001-5 Erik D. Demaine and Charles E. Leiserson September 7, 2005 Introduction to Algorithms L1.36
  • 37. Merging two sorted arrays 20 12 20 12 20 12 20 12 20 12 20 12 13 11 13 11 13 11 13 11 13 11 13 7 9 7 9 7 9 9 2 1 2 1 2 7 9 11 12 Copyright © 2001-5 Erik D. Demaine and Charles E. Leiserson September 7, 2005 Introduction to Algorithms L1.37
  • 38. Merging two sorted arrays 20 12 20 12 20 12 20 12 20 12 20 12 13 11 13 11 13 11 13 11 13 11 13 7 9 7 9 7 9 9 2 1 2 1 2 7 9 11 12 Time = Θ(n) to merge a total of n elements (linear time). Copyright © 2001-5 Erik D. Demaine and Charles E. Leiserson September 7, 2005 Introduction to Algorithms L1.38
  • 39. Analyzing merge sort T(n) MERGE-SORT A[1 . . n] Θ(1) 1. If n = 1, done. 2T(n/2) 2. Recursively sort A[ 1 . . ⎡n/2⎤ ] Abuse and A[ ⎡n/2⎤+1 . . n ] . Θ(n) 3. “Merge” the 2 sorted lists Sloppiness: Should be T( ⎡n/2⎤ ) + T( ⎣n/2⎦ ) , but it turns out not to matter asymptotically. Copyright © 2001-5 Erik D. Demaine and Charles E. Leiserson September 7, 2005 Introduction to Algorithms L1.39
  • 40. Recurrence for merge sort Θ(1) if n = 1; T(n) = 2T(n/2) + Θ(n) if n > 1. • We shall usually omit stating the base case when T(n) = Θ(1) for sufficiently small n, but only when it has no effect on the asymptotic solution to the recurrence. • CLRS and Lecture 2 provide several ways to find a good upper bound on T(n). Copyright © 2001-5 Erik D. Demaine and Charles E. Leiserson September 7, 2005 Introduction to Algorithms L1.40
  • 41. Recursion tree Solve T(n) = 2T(n/2) + cn, where c > 0 is constant. Copyright © 2001-5 Erik D. Demaine and Charles E. Leiserson September 7, 2005 Introduction to Algorithms L1.41
  • 42. Recursion tree Solve T(n) = 2T(n/2) + cn, where c > 0 is constant. T(n) Copyright © 2001-5 Erik D. Demaine and Charles E. Leiserson September 7, 2005 Introduction to Algorithms L1.42
  • 43. Recursion tree Solve T(n) = 2T(n/2) + cn, where c > 0 is constant. cn T(n/2) T(n/2) Copyright © 2001-5 Erik D. Demaine and Charles E. Leiserson September 7, 2005 Introduction to Algorithms L1.43
  • 44. Recursion tree Solve T(n) = 2T(n/2) + cn, where c > 0 is constant. cn cn/2 cn/2 T(n/4) T(n/4) T(n/4) T(n/4) Copyright © 2001-5 Erik D. Demaine and Charles E. Leiserson September 7, 2005 Introduction to Algorithms L1.44
  • 45. Recursion tree Solve T(n) = 2T(n/2) + cn, where c > 0 is constant. cn cn/2 cn/2 cn/4 cn/4 cn/4 cn/4 … Θ(1) Copyright © 2001-5 Erik D. Demaine and Charles E. Leiserson September 7, 2005 Introduction to Algorithms L1.45
  • 46. Recursion tree Solve T(n) = 2T(n/2) + cn, where c > 0 is constant. cn cn/2 cn/2 h = lg n cn/4 cn/4 cn/4 cn/4 … Θ(1) Copyright © 2001-5 Erik D. Demaine and Charles E. Leiserson September 7, 2005 Introduction to Algorithms L1.46
  • 47. Recursion tree Solve T(n) = 2T(n/2) + cn, where c > 0 is constant. cn cn cn/2 cn/2 h = lg n cn/4 cn/4 cn/4 cn/4 … Θ(1) Copyright © 2001-5 Erik D. Demaine and Charles E. Leiserson September 7, 2005 Introduction to Algorithms L1.47
  • 48. Recursion tree Solve T(n) = 2T(n/2) + cn, where c > 0 is constant. cn cn cn/2 cn/2 cn h = lg n cn/4 cn/4 cn/4 cn/4 … Θ(1) Copyright © 2001-5 Erik D. Demaine and Charles E. Leiserson September 7, 2005 Introduction to Algorithms L1.48
  • 49. Recursion tree Solve T(n) = 2T(n/2) + cn, where c > 0 is constant. cn cn cn/2 cn/2 cn h = lg n cn/4 cn/4 cn/4 cn/4 cn … … Θ(1) Copyright © 2001-5 Erik D. Demaine and Charles E. Leiserson September 7, 2005 Introduction to Algorithms L1.49
  • 50. Recursion tree Solve T(n) = 2T(n/2) + cn, where c > 0 is constant. cn cn cn/2 cn/2 cn h = lg n cn/4 cn/4 cn/4 cn/4 cn … … Θ(1) #leaves = n Θ(n) Copyright © 2001-5 Erik D. Demaine and Charles E. Leiserson September 7, 2005 Introduction to Algorithms L1.50
  • 51. Recursion tree Solve T(n) = 2T(n/2) + cn, where c > 0 is constant. cn cn cn/2 cn/2 cn h = lg n cn/4 cn/4 cn/4 cn/4 cn … … Θ(1) #leaves = n Θ(n) Total = Θ(n lg n) Copyright © 2001-5 Erik D. Demaine and Charles E. Leiserson September 7, 2005 Introduction to Algorithms L1.51
  • 52. Conclusions • Θ(n lg n) grows more slowly than Θ(n2). • Therefore, merge sort asymptotically beats insertion sort in the worst case. • In practice, merge sort beats insertion sort for n > 30 or so. • Go test it out for yourself! Copyright © 2001-5 Erik D. Demaine and Charles E. Leiserson September 7, 2005 Introduction to Algorithms L1.52