SlideShare a Scribd company logo
Unit-2
Algorithms Using
Divide-and-conquer
Introduction
 Divide-and-conquer is a top-down
technique for designing algorithms
that consists of dividing the problem
into smaller sub problems hoping
that the solutions of the sub
problems are easier to find and then
composing the partial solutions into
the solution of the original problem.
Divide-and-conquer
 1. Divide: Break the problem into
sub-problems of same type.
2. Conquer: Recursively solve
these sub-problems.
3. Combine: Combine the solution
sub-problems.
Divide-and-conquer
 For Example: Assuming that each
divide step creates two sub-
problems
Divide-and-conquer
Example-2
Divide-and-conquer
 For Example: If we can divide the
problem into more than two, it
looks like this
Daa unit 2
Divide-and-conquer Detail
Divide/Break
 This step involves breaking the problem
into smaller sub-problems.
 Sub-problems should represent a part of
the original problem.
 This step generally takes a recursive
approach to divide the problem until no
sub-problem is further divisible.
 At this stage, sub-problems become
atomic in nature but still represent some
part of the actual problem.
Divide-and-conquer Detail
Conquer/Solve
 This step receives a lot of smaller sub-
problems to be solved.
 Generally, at this level, the problems are
considered 'solved' on their own.
Divide-and-conquer Detail
Merge/Combine
 When the smaller sub-problems are
solved, this stage recursively combines
them until they formulate a solution of
the original problem.
 This algorithmic approach works
recursively and conquer & merge steps
works so close that they appear as one.
Standard Algorithms
based on D & C
 The following algorithms are based on
divide-and-conquer algorithm design
paradigm.
 Merge Sort
 Quick Sort
 Binary Search
 Strassen's Matrix Multiplication
 Closest pair (points)
 Cooley–Tukey Fast Fourier Transform
(FFT) algorithm
Advantages of D & C
1. Solving difficult problems:
Divide and conquer is a powerful tool for solving
conceptually difficult problems: all it requires is a
way of breaking the problem into sub-problems,
of solving the trivial cases and of combining sub-
problems to the original problem.
2. Parallelism:
Divide and conquer algorithms are naturally
adapted for execution in multi-processor
machines, especially shared-memory systems
where the communication of data between
processors does not need to be planned in
advance, because distinct sub-problems can be
executed on different processors.
Advantages of D & C
3. Memory Access:
Divide-and-conquer algorithms naturally tend to
make efficient use of memory caches. The reason
is that once a sub-problem is small enough, it and
all its sub-problems can, in principle, be solved
within the cache, without accessing the slower
main memory.
4. Roundoff control:
In computations with rounded arithmetic, e.g.
with floating point numbers, a divide-and-conquer
algorithm may yield more accurate results than a
superficially equivalent iterative method.
Advantages of D & C
 For solving difficult problems like Tower
Of Hanoi, divide & conquer is a powerful
tool
 Results in efficient algorithms.
 Divide & Conquer algorithms are adapted
foe execution in multi-processor
machines
 Results in algorithms that use memory
cache efficiently.
Limitations of D & C
 Recursion is slow.
 Very simple problem may be more
complicated than an iterative approach.
Example: adding n numbers etc
Example of Multiplication of
N digit integers.
 Multiplication can be perform using divide
and conquer technique.
 First we know the decimal system of
number which are shown as under.
Number is 3754
3*103 + 7*102 + 5*101 + 4*100
Example of Multiplication of
N digit integers.
 2345 * 6789
2*103 + 3*102 + 4*101 + 5*100
6*103 + 7*102 + 8*101 + 9*100
4 3 2 1
Example of Multiplication of
N digit integers.
 2345 * 6789
2*103 + 3*102 + 4*101 + 5*100
6*103 + 7*102 + 8*101 + 9*100
4 3 2 1
Example of Multiplication of
N digit integers.
 2345 * 6789
2*103 + 3*102 + 4*101 + 5*100
6*103 + 7*102 + 8*101 + 9*100
4 3 2 1
Closest-Pair Problem:
Divide and Conquer
 Brute force approach requires comparing every point
with every other point
 Given n points, we must perform 1 + 2 + 3 + … + n-
2 + n-1 comparisons.
 Brute force  O(n2)
 The Divide and Conquer algorithm yields  O(n log
n)
 Reminder: if n = 1,000,000 then
 n2 = 1,000,000,000,000 whereas
 n log n = 20,000,000
2
)1(1
1
nn
k
n
k




Closest-Pair Algorithm
Given: A set of points in 2-D
Closest-Pair Algorithm
Step 1: Sort the points in one D
Lets sort based on the X-axis
O(n log n) using quicksort or mergesort
1
2
3
4
5
6
7
8
9
1
0
1
1
1
2
1
3 1
4
Closest-Pair Algorithm
Step 2: Split the points, i.e.,
Draw a line at the mid-point between 7
and 8
1
2
3
4
5
6
7
8
9
1
0
1
1
1
2
1
3 1
4
Closest-Pair Algorithm
Sub-Problem
1
Sub-Problem
2
Advantage: Normally, we’d have to
compare each of the 14 points with every
other point.
(n-1)n/2 = 13*14/2 = 91 comparisons
1
2
3
4
5
6
7
8
9
1
0
1
1
1
2
1
3 1
4
Closest-Pair Algorithm
Sub-Problem
1
Sub-Problem
2
Advantage: Now, we have two sub-
problems of half the size. Thus, we have to
do 6*7/2 comparisons twice, which is 42
comparisons
1
2
3
4
5
6
7
8
9
1
0
1
1
1
2
1
3 1
4
Closest-Pair Algorithm
d1
d2
Sub-Problem
1
Sub-Problem
2
solution d = min(d1, d2)
Advantage: With just one split we cut the
number of comparisons in half. Obviously,
we gain an even greater advantage if we
split the sub-problems.
1
2
3
4
5
6
7
8
9
1
0
1
1
1
2
1
3 1
4
Closest-Pair Algorithm
d1
d2
Sub-Problem
1
Sub-Problem
2
d = min(d1, d2)
Problem: However, what if the closest two
points are each from different sub-
problems?
1
2
3
4
5
6
7
8
9
1
0
1
1
1
2
1
3 1
4
Closest-Pair Algorithm
d1
d2
Sub-Problem
1
Sub-Problem
2
Here is an example where we have to
compare points from sub-problem 1 to the
points in sub-problem 2.
1
2
3
4
5
6
7
8
9
1
0
1
1
1
2
1
3 1
4
Closest-Pair Algorithm
d1
d2
Sub-Problem
1
Sub-Problem
2
However, we only have to compare points
inside the following “strip.”
1
2
3
4
5
6
7
8
9
1
0
1
1
1
2
1
3 1
4
Closest-Pair Algorithm
d1
d2
Sub-Problem
1
Sub-Problem
2
dd
d = min(d1, d2)
Step 3: In fact we can continue to split
until each sub-problem is trivial, i.e., takes
one comparison.
1
2
3
4
5
6
7
8
9
1
0
1
1
1
2
1
3 1
4
Closest-Pair Algorithm
Finally: The solution to each sub-problem
is combined until the final solution is
obtained
1
2
3
4
5
6
7
8
9
1
0
1
1
1
2
1
3 1
4
Closest-Pair Algorithm
Finally: On the last step the ‘strip’ will
likely be very small. Thus, combining the
two largest sub-problems won’t require
much work.
1
2
3
4
5
6
7
8
9
1
0
1
1
1
2
1
3 1
4
Closest-Pair Algorithm
1
2
3
4
5
6
7
8
9
1
0
1
1
1
2
1
3 1
4
Closest-Pair Algorithm
 In this example, it takes 22 comparisons to
find the closets-pair.
 The brute force algorithm would have taken
91 comparisons.
 But, the real advantage occurs when there are
millions of points.
Closest-Pair Algo
Float DELTA-LEFT, DELTA-RIGHT;
Float DELTA;
If n= 2 then
return distance form p(1) to p(2);
Else
P-LEFT <- (p(1),p(2),p(n/2));
P-RIGHT <- (p(n/2 + 1),p(n/2 + 2),p(n));
DELTA-LEFT <- Closest_pair(P-LEFT,n2);
DELTA-RIGHT <- Closest_pair(P-RIGHT,n2);
DELTA<- minimum(DELTA-LEFT,DELTA-RIGHT)
Closest-Pair Algo
For I in 1---s do
for j in i+1..s do
if(|x[i] – x[j] | > DELTA and
|y[i] – y[j]|> DELTA ) then
exit;
end
if(distance(q[I],q[j] <DELTA)) then
DELTA <- distance (q[i],q[j]);
end
end
Merge Sort
Closest-Pair Algo
Array a[]
Array b[]
Integer h,i,j,k;
h<- low;
i <- low;
j=<- mid + 1;
While( h<= mid and j<= high) do
if(a[h] <= a[j]) then
b[i]<- a[h]
h<-h+1
Closest-Pair Algo
Else
b[i]<- a[j]
j<- j+1;
end
i<- i+1;
End
If(h>mid) then
for(k<-j to high) do
b[i] <- a[k];
i<-i+1;
Closest-Pair Algo
Else
for(k<- to mid) do
b[i] <- a[k]
i=i+1;
End
For(k<-low to high)
a[k]<- b[k]
end
Timing Analysis
 D&C algorithm running time in
mainly affected by 3 factors
 The number of sub-instance(α)
into which a problem is split.
 The ratio of initial problem size to
sub problem size(ß)
 The number of steps required to
divide the initial instance and to
combine sub-solutions expressed
as a function of the input size n.
Timing Analysis
 P is D & C Where α sub instance each of
size n/ß
 Let Tp(n) donete the number of steps
taken by P on instances of size n.
Tp(n0) = constant (recursive-base);
Tp(n)= αTp (n/ß)+y(n);
α is number
of sub
instance
ß is number
of sub size
y is constant

More Related Content

PPTX
Dijkstra’S Algorithm
PPT
Data encryption standard
PPTX
Introduction to Dynamic Programming, Principle of Optimality
PPT
Sorting Algorithms
DOC
Unit 2 in daa
PPT
Socket System Calls
PPT
how to calclute time complexity of algortihm
PPT
Backtracking
Dijkstra’S Algorithm
Data encryption standard
Introduction to Dynamic Programming, Principle of Optimality
Sorting Algorithms
Unit 2 in daa
Socket System Calls
how to calclute time complexity of algortihm
Backtracking

What's hot (20)

PPTX
Dijkstra's algorithm presentation
PDF
Full solution manual real time system by jane w s liu solution manual
PPTX
Deadlock in database
PPT
Graph coloring problem
PPT
Shared memory
PPTX
Backtracking
PDF
2. Python Cheat Sheet.pdf
PPT
Lecture 1 (distributed systems)
PPTX
ElGamal Encryption Algoritham.pptx
PPTX
Merge sort and quick sort
PDF
TOC 1 | Introduction to Theory of Computation
PPTX
N queen problem
PPTX
Insertion sort
PPTX
Presentation1
PPT
Algorithm analysis
PPTX
Daa unit 2
PPTX
Paging in Computer Architecture and Operating System
PPTX
Python games (pygames)
PPTX
Chapter 10 Operating Systems silberschatz
Dijkstra's algorithm presentation
Full solution manual real time system by jane w s liu solution manual
Deadlock in database
Graph coloring problem
Shared memory
Backtracking
2. Python Cheat Sheet.pdf
Lecture 1 (distributed systems)
ElGamal Encryption Algoritham.pptx
Merge sort and quick sort
TOC 1 | Introduction to Theory of Computation
N queen problem
Insertion sort
Presentation1
Algorithm analysis
Daa unit 2
Paging in Computer Architecture and Operating System
Python games (pygames)
Chapter 10 Operating Systems silberschatz
Ad

Similar to Daa unit 2 (20)

PDF
Divide and Conquer Case Study
PDF
Seminar Report (Final)
PPTX
Design and Analysis of Algorithm in Compter Science.pptx
PPT
5.2 divede and conquer 03
PPT
5.2 divede and conquer 03
PPT
Divide and conquer algorithm
PPTX
Divide and Conquer - Part II - Quickselect and Closest Pair of Points
PPTX
Data Structure and Algorithm - Divide and Conquer
PDF
A simple study on computer algorithms by S. M. Risalat Hasan Chowdhury
PDF
divide and conquer - data structured and algorithms
PPTX
Divide and conquer
PPTX
Divide and Conquer - Part 1
PPTX
Brute Force and Divide & Conquer Technique
PPTX
Introduction-to-Divide-and-Conquer_(1).pptx
PDF
CS345-Algorithms-II-Lecture-1-CS345-2016.pdf
DOC
algorithm Unit 2
PDF
Divide and conquer
PPTX
12.03.Divide-and-conquer_algorithms.pptx
PPTX
12.03.Divide-and-conquer_algorithms.pptx
PPTX
Algorithm in computer science
Divide and Conquer Case Study
Seminar Report (Final)
Design and Analysis of Algorithm in Compter Science.pptx
5.2 divede and conquer 03
5.2 divede and conquer 03
Divide and conquer algorithm
Divide and Conquer - Part II - Quickselect and Closest Pair of Points
Data Structure and Algorithm - Divide and Conquer
A simple study on computer algorithms by S. M. Risalat Hasan Chowdhury
divide and conquer - data structured and algorithms
Divide and conquer
Divide and Conquer - Part 1
Brute Force and Divide & Conquer Technique
Introduction-to-Divide-and-Conquer_(1).pptx
CS345-Algorithms-II-Lecture-1-CS345-2016.pdf
algorithm Unit 2
Divide and conquer
12.03.Divide-and-conquer_algorithms.pptx
12.03.Divide-and-conquer_algorithms.pptx
Algorithm in computer science
Ad

Recently uploaded (20)

PPTX
Pharmacology of Heart Failure /Pharmacotherapy of CHF
PDF
Pre independence Education in Inndia.pdf
PPTX
IMMUNITY IMMUNITY refers to protection against infection, and the immune syst...
PPTX
GDM (1) (1).pptx small presentation for students
PPTX
BOWEL ELIMINATION FACTORS AFFECTING AND TYPES
PPTX
master seminar digital applications in india
PDF
Complications of Minimal Access Surgery at WLH
PPTX
human mycosis Human fungal infections are called human mycosis..pptx
PPTX
Renaissance Architecture: A Journey from Faith to Humanism
PDF
grade 11-chemistry_fetena_net_5883.pdf teacher guide for all student
PDF
The Lost Whites of Pakistan by Jahanzaib Mughal.pdf
PPTX
Introduction_to_Human_Anatomy_and_Physiology_for_B.Pharm.pptx
PDF
Classroom Observation Tools for Teachers
PDF
102 student loan defaulters named and shamed – Is someone you know on the list?
PPTX
Cell Structure & Organelles in detailed.
PDF
Computing-Curriculum for Schools in Ghana
PPTX
1st Inaugural Professorial Lecture held on 19th February 2020 (Governance and...
PDF
Abdominal Access Techniques with Prof. Dr. R K Mishra
PDF
Saundersa Comprehensive Review for the NCLEX-RN Examination.pdf
PPTX
Final Presentation General Medicine 03-08-2024.pptx
Pharmacology of Heart Failure /Pharmacotherapy of CHF
Pre independence Education in Inndia.pdf
IMMUNITY IMMUNITY refers to protection against infection, and the immune syst...
GDM (1) (1).pptx small presentation for students
BOWEL ELIMINATION FACTORS AFFECTING AND TYPES
master seminar digital applications in india
Complications of Minimal Access Surgery at WLH
human mycosis Human fungal infections are called human mycosis..pptx
Renaissance Architecture: A Journey from Faith to Humanism
grade 11-chemistry_fetena_net_5883.pdf teacher guide for all student
The Lost Whites of Pakistan by Jahanzaib Mughal.pdf
Introduction_to_Human_Anatomy_and_Physiology_for_B.Pharm.pptx
Classroom Observation Tools for Teachers
102 student loan defaulters named and shamed – Is someone you know on the list?
Cell Structure & Organelles in detailed.
Computing-Curriculum for Schools in Ghana
1st Inaugural Professorial Lecture held on 19th February 2020 (Governance and...
Abdominal Access Techniques with Prof. Dr. R K Mishra
Saundersa Comprehensive Review for the NCLEX-RN Examination.pdf
Final Presentation General Medicine 03-08-2024.pptx

Daa unit 2

  • 2. Introduction  Divide-and-conquer is a top-down technique for designing algorithms that consists of dividing the problem into smaller sub problems hoping that the solutions of the sub problems are easier to find and then composing the partial solutions into the solution of the original problem.
  • 3. Divide-and-conquer  1. Divide: Break the problem into sub-problems of same type. 2. Conquer: Recursively solve these sub-problems. 3. Combine: Combine the solution sub-problems.
  • 4. Divide-and-conquer  For Example: Assuming that each divide step creates two sub- problems
  • 6. Divide-and-conquer  For Example: If we can divide the problem into more than two, it looks like this
  • 8. Divide-and-conquer Detail Divide/Break  This step involves breaking the problem into smaller sub-problems.  Sub-problems should represent a part of the original problem.  This step generally takes a recursive approach to divide the problem until no sub-problem is further divisible.  At this stage, sub-problems become atomic in nature but still represent some part of the actual problem.
  • 9. Divide-and-conquer Detail Conquer/Solve  This step receives a lot of smaller sub- problems to be solved.  Generally, at this level, the problems are considered 'solved' on their own.
  • 10. Divide-and-conquer Detail Merge/Combine  When the smaller sub-problems are solved, this stage recursively combines them until they formulate a solution of the original problem.  This algorithmic approach works recursively and conquer & merge steps works so close that they appear as one.
  • 11. Standard Algorithms based on D & C  The following algorithms are based on divide-and-conquer algorithm design paradigm.  Merge Sort  Quick Sort  Binary Search  Strassen's Matrix Multiplication  Closest pair (points)  Cooley–Tukey Fast Fourier Transform (FFT) algorithm
  • 12. Advantages of D & C 1. Solving difficult problems: Divide and conquer is a powerful tool for solving conceptually difficult problems: all it requires is a way of breaking the problem into sub-problems, of solving the trivial cases and of combining sub- problems to the original problem. 2. Parallelism: Divide and conquer algorithms are naturally adapted for execution in multi-processor machines, especially shared-memory systems where the communication of data between processors does not need to be planned in advance, because distinct sub-problems can be executed on different processors.
  • 13. Advantages of D & C 3. Memory Access: Divide-and-conquer algorithms naturally tend to make efficient use of memory caches. The reason is that once a sub-problem is small enough, it and all its sub-problems can, in principle, be solved within the cache, without accessing the slower main memory. 4. Roundoff control: In computations with rounded arithmetic, e.g. with floating point numbers, a divide-and-conquer algorithm may yield more accurate results than a superficially equivalent iterative method.
  • 14. Advantages of D & C  For solving difficult problems like Tower Of Hanoi, divide & conquer is a powerful tool  Results in efficient algorithms.  Divide & Conquer algorithms are adapted foe execution in multi-processor machines  Results in algorithms that use memory cache efficiently.
  • 15. Limitations of D & C  Recursion is slow.  Very simple problem may be more complicated than an iterative approach. Example: adding n numbers etc
  • 16. Example of Multiplication of N digit integers.  Multiplication can be perform using divide and conquer technique.  First we know the decimal system of number which are shown as under. Number is 3754 3*103 + 7*102 + 5*101 + 4*100
  • 17. Example of Multiplication of N digit integers.  2345 * 6789 2*103 + 3*102 + 4*101 + 5*100 6*103 + 7*102 + 8*101 + 9*100 4 3 2 1
  • 18. Example of Multiplication of N digit integers.  2345 * 6789 2*103 + 3*102 + 4*101 + 5*100 6*103 + 7*102 + 8*101 + 9*100 4 3 2 1
  • 19. Example of Multiplication of N digit integers.  2345 * 6789 2*103 + 3*102 + 4*101 + 5*100 6*103 + 7*102 + 8*101 + 9*100 4 3 2 1
  • 20. Closest-Pair Problem: Divide and Conquer  Brute force approach requires comparing every point with every other point  Given n points, we must perform 1 + 2 + 3 + … + n- 2 + n-1 comparisons.  Brute force  O(n2)  The Divide and Conquer algorithm yields  O(n log n)  Reminder: if n = 1,000,000 then  n2 = 1,000,000,000,000 whereas  n log n = 20,000,000 2 )1(1 1 nn k n k    
  • 21. Closest-Pair Algorithm Given: A set of points in 2-D
  • 22. Closest-Pair Algorithm Step 1: Sort the points in one D
  • 23. Lets sort based on the X-axis O(n log n) using quicksort or mergesort 1 2 3 4 5 6 7 8 9 1 0 1 1 1 2 1 3 1 4 Closest-Pair Algorithm
  • 24. Step 2: Split the points, i.e., Draw a line at the mid-point between 7 and 8 1 2 3 4 5 6 7 8 9 1 0 1 1 1 2 1 3 1 4 Closest-Pair Algorithm Sub-Problem 1 Sub-Problem 2
  • 25. Advantage: Normally, we’d have to compare each of the 14 points with every other point. (n-1)n/2 = 13*14/2 = 91 comparisons 1 2 3 4 5 6 7 8 9 1 0 1 1 1 2 1 3 1 4 Closest-Pair Algorithm Sub-Problem 1 Sub-Problem 2
  • 26. Advantage: Now, we have two sub- problems of half the size. Thus, we have to do 6*7/2 comparisons twice, which is 42 comparisons 1 2 3 4 5 6 7 8 9 1 0 1 1 1 2 1 3 1 4 Closest-Pair Algorithm d1 d2 Sub-Problem 1 Sub-Problem 2 solution d = min(d1, d2)
  • 27. Advantage: With just one split we cut the number of comparisons in half. Obviously, we gain an even greater advantage if we split the sub-problems. 1 2 3 4 5 6 7 8 9 1 0 1 1 1 2 1 3 1 4 Closest-Pair Algorithm d1 d2 Sub-Problem 1 Sub-Problem 2 d = min(d1, d2)
  • 28. Problem: However, what if the closest two points are each from different sub- problems? 1 2 3 4 5 6 7 8 9 1 0 1 1 1 2 1 3 1 4 Closest-Pair Algorithm d1 d2 Sub-Problem 1 Sub-Problem 2
  • 29. Here is an example where we have to compare points from sub-problem 1 to the points in sub-problem 2. 1 2 3 4 5 6 7 8 9 1 0 1 1 1 2 1 3 1 4 Closest-Pair Algorithm d1 d2 Sub-Problem 1 Sub-Problem 2
  • 30. However, we only have to compare points inside the following “strip.” 1 2 3 4 5 6 7 8 9 1 0 1 1 1 2 1 3 1 4 Closest-Pair Algorithm d1 d2 Sub-Problem 1 Sub-Problem 2 dd d = min(d1, d2)
  • 31. Step 3: In fact we can continue to split until each sub-problem is trivial, i.e., takes one comparison. 1 2 3 4 5 6 7 8 9 1 0 1 1 1 2 1 3 1 4 Closest-Pair Algorithm
  • 32. Finally: The solution to each sub-problem is combined until the final solution is obtained 1 2 3 4 5 6 7 8 9 1 0 1 1 1 2 1 3 1 4 Closest-Pair Algorithm
  • 33. Finally: On the last step the ‘strip’ will likely be very small. Thus, combining the two largest sub-problems won’t require much work. 1 2 3 4 5 6 7 8 9 1 0 1 1 1 2 1 3 1 4 Closest-Pair Algorithm
  • 34. 1 2 3 4 5 6 7 8 9 1 0 1 1 1 2 1 3 1 4 Closest-Pair Algorithm  In this example, it takes 22 comparisons to find the closets-pair.  The brute force algorithm would have taken 91 comparisons.  But, the real advantage occurs when there are millions of points.
  • 35. Closest-Pair Algo Float DELTA-LEFT, DELTA-RIGHT; Float DELTA; If n= 2 then return distance form p(1) to p(2); Else P-LEFT <- (p(1),p(2),p(n/2)); P-RIGHT <- (p(n/2 + 1),p(n/2 + 2),p(n)); DELTA-LEFT <- Closest_pair(P-LEFT,n2); DELTA-RIGHT <- Closest_pair(P-RIGHT,n2); DELTA<- minimum(DELTA-LEFT,DELTA-RIGHT)
  • 36. Closest-Pair Algo For I in 1---s do for j in i+1..s do if(|x[i] – x[j] | > DELTA and |y[i] – y[j]|> DELTA ) then exit; end if(distance(q[I],q[j] <DELTA)) then DELTA <- distance (q[i],q[j]); end end
  • 38. Closest-Pair Algo Array a[] Array b[] Integer h,i,j,k; h<- low; i <- low; j=<- mid + 1; While( h<= mid and j<= high) do if(a[h] <= a[j]) then b[i]<- a[h] h<-h+1
  • 39. Closest-Pair Algo Else b[i]<- a[j] j<- j+1; end i<- i+1; End If(h>mid) then for(k<-j to high) do b[i] <- a[k]; i<-i+1;
  • 40. Closest-Pair Algo Else for(k<- to mid) do b[i] <- a[k] i=i+1; End For(k<-low to high) a[k]<- b[k] end
  • 41. Timing Analysis  D&C algorithm running time in mainly affected by 3 factors  The number of sub-instance(α) into which a problem is split.  The ratio of initial problem size to sub problem size(ß)  The number of steps required to divide the initial instance and to combine sub-solutions expressed as a function of the input size n.
  • 42. Timing Analysis  P is D & C Where α sub instance each of size n/ß  Let Tp(n) donete the number of steps taken by P on instances of size n. Tp(n0) = constant (recursive-base); Tp(n)= αTp (n/ß)+y(n); α is number of sub instance ß is number of sub size y is constant