SlideShare a Scribd company logo
1 of 79
By: Abdulrazak Zakieh
1Transform and Conquer
• Understand the concept of transform and conquer
• List the applications of presorting
• Explain the concept of Gauss elimination
• Use Horner’s rule for evaluating polynomials
• Find the lowest common multiple of two numbers
2Transform and Conquer
• Understand the concept of transform and conquer
• List the applications of presorting
• Explain the concept of Gauss elimination
• Use Horner’s rule for evaluating polynomials
• Find the lowest common multiple of two numbers
3Transform and Conquer
Understand the concept of transform and conquer
4Transform and Conquer
Understand the concept of transform and conquer
5Transform and Conquer
Understand the concept of transform and conquer
6
Minimize Complication
Transform and Conquer
Understand the concept of transform and conquer
7
•Instance Simplification
•Change Representation
•Problem Reduction
Transform and Conquer
• Understand the concept of transform and conquer
• List the applications of presorting
• Explain the concept of Gauss elimination
• Use Horner’s rule for evaluating polynomials
• Find the lowest common multiple of two numbers
8Transform and Conquer
9
Presorting
Instance Simplification
Input Sorted Input Find Solution
Transform and Conquer
10
Presorting
• Find if there is any repeated member
• Search
• Find mode
• Find frequencies
• Find the median
• …
Transform and Conquer
Presorting
11
15 3 4 -12 2
Find if there is any repeated member:
Transform and Conquer
Presorting
12
15 0 4 -12 2
Find if there is any repeated member:
Transform and Conquer
Presorting
13
15 0 4 -12 2
Find if there is any repeated member:
Transform and Conquer
Presorting
14
15 0 4 -12 2
Find if there is any repeated member:
Transform and Conquer
Presorting
15
15 0 4 -12 2
Find if there is any repeated member:
Transform and Conquer
Presorting
16
15 0 4 -12 2
Find if there is any repeated member:
Transform and Conquer
Presorting
17
15 3 4 -12 2
Find if there is any repeated member:
Transform and Conquer
Presorting
18
15 3 4 -12 2
Find if there is any repeated member:
Transform and Conquer
Presorting
19
15 3 4 -12 2
Find if there is any repeated member:
Transform and Conquer
Presorting
20
15 3 4 -12 2
Find if there is any repeated member:
Transform and Conquer
Presorting
21
15 3 4 -12 2
Find if there is any repeated member:
Transform and Conquer
Presorting
22
15 3 4 -12 2
Find if there is any repeated member:
Transform and Conquer
Presorting
23
15 3 4 -12 2
Find if there is any repeated member:
Transform and Conquer
Presorting
24
15 3 4 -12 2
Find if there is any repeated member:
Transform and Conquer
Presorting
25
15 3 4 -12 2
Find if there is any repeated member:
Transform and Conquer
Presorting
26
Find if there is any repeated member:
Algorithm:
Compare each pair and stop when finding repetition or
when all pairs are checked
Complication:
O(n2)
Transform and Conquer
Presorting
27
-12 2 3 4 15
Find if there is any repeated member:
1. Sort the list
Transform and Conquer
Presorting
28
-12 2 3 4 15
Find if there is any repeated member:
1. Linear scan for repeated members (Consequent)
Transform and Conquer
Presorting
29
-12 2 3 4 15
Find if there is any repeated member:
1. Linear search for repeated members (Consequent)
Transform and Conquer
Presorting
30
-12 2 3 4 15
Find if there is any repeated member:
1. Linear search for repeated members (Consequent)
Transform and Conquer
Presorting
31
-12 2 3 4 15
Find if there is any repeated member:
1. Linear search for repeated members (Consequent)
Transform and Conquer
Presorting
32
-12 2 3 4 15
Find if there is any repeated member:
1. Linear search for repeated members (Consequent)
Transform and Conquer
Presorting
33
Find if there is any repeated member:
Algorithm:
1. Sort the list
2. For i = 0 to n – 2:
2.1 if a[i] = a[i + 1] then return false
3. return true
Complication:
T(n) = Tsort(n) + Tscan(n)
Transform and Conquer
Presorting
34
Find if there is any repeated member:
Complication: T(n) = Tsort(n) + Tscan(n)
O(n)
?Selection Sort
Bubble Sort
Insertion Sort
O(n2) Merge Sort
O(n.log(n))
Quick Sort
O(n.log(n))
O(n2)T(n) = O(n2) + O(n)
= O(n2) T(n) = O(n.log(n)) + O(n)
= O(n.log(n))T(n) = O(n2) + O(n)
= O(n2)
Transform and Conquer
Presorting
35
15 3 4 -12 2
Searching: find 6
Transform and Conquer
Presorting
36
15 3 4 -12 2
Searching: find 6
Transform and Conquer
Presorting
37
15 3 4 -12 2
Searching: find 6
Transform and Conquer
Presorting
38
15 3 4 -12 2
Searching: find 6
Transform and Conquer
Presorting
39
15 3 4 -12 2
Searching: find 6
Transform and Conquer
Presorting
40
15 3 4 -12 2
Searching: find 6
Transform and Conquer
Presorting
41
Searching
Algorithm:
Linear search
Complication:
O(n)
Transform and Conquer
Presorting
42
-12 2 3 4 15
Searching
1. Sort the list
Transform and Conquer
Presorting
43
-12 2 3 4 15
Searching
2. Use binary search
Transform and Conquer
Presorting
44
Searching
Algorithm:
1. Sort the list
2. Binary Search
Complication:
T(n) = Tsort(n) + TBinarySearch(n)
Transform and Conquer
Presorting
45
Searching
Algorithm:
1. Sort the list
2. Binary Search
Complication:
T(n) = O(n.log(n)) + O(log(n))
Transform and Conquer
Presorting
46
Searching
Algorithm:
1. Sort the list
2. Binary Search
Complication:
T(n) = O(n.log(n))
Transform and Conquer
Presorting
47
Searching
Algorithm:
1. Sort the list
2. Binary Search
Complication:
T(n) = O(n.log(n))
Transform and Conquer
Presorting
48
Searching
Search 100 times in array with 1000 members:
With out presorting With presorting
100 * O(n) O(n.log(n)) + 100. O(log(n))
100,000 1000 * 3 + 100 * 3 = 3300
Transform and Conquer
• Understand the concept of transform and conquer
• List the applications of presorting
• Explain the concept of Gauss elimination
• Use Horner’s rule for evaluating polynomials
• Find the lowest common multiple of two numbers
49Transform and Conquer
Explain the concept of Gauss elimination
50
Change Representation
Transform and Conquer
Explain the concept of Gauss elimination
51
Change Representation
Transform and Conquer
Explain the concept of Gauss elimination
52
Change Representation
Transform and Conquer
Explain the concept of Gauss elimination
53
Change Representation
Transform and Conquer
Explain the concept of Gauss elimination
54Transform and Conquer
Explain the concept of Gauss elimination
55Transform and Conquer
Explain the concept of Gauss elimination
56Transform and Conquer
Explain the concept of Gauss elimination
57
Augmented
Array
2 3 4 9
3 2 1 6
1 2 1 4
Transform and Conquer
Explain the concept of Gauss elimination
58
2 3 4 9
0 5 10 15
0 1 -2 -1
Transform and Conquer
Explain the concept of Gauss elimination
59
2 3 4 9
0 5 10 15
0 0 -20 -20
Transform and Conquer
Explain the concept of Gauss elimination
60
2 3 4 9
0 5 10 15
0 0 -20 -20
Solve By back
substitution
Transform and Conquer
Explain the concept of Gauss elimination
61
2 3 4 9
0 5 10 15
0 0 -20 -20
Solve By back
substitution
Z = 1
Y = 1
X = 1
Transform and Conquer
Gauss elimination
62
Algorithm:
Transform and Conquer
Gauss elimination
63
Algorithm:
Complication
T(n) = O(n3)
Transform and Conquer
LU Decomposition
64
Change Representation
Transform and Conquer
• Understand the concept of transform and conquer
• List the applications of presorting
• Explain the concept of Gauss elimination
• Use Horner’s rule for evaluating polynomials
• Find the lowest common multiple of two numbers
65Transform and Conquer
Horner’s Rule
66
Used for Evaluating Polynomials.
Change Representation
Transform and Conquer
Horner’s Rule
67
Multiply by coefficients
Complication:
O(n2)
Transform and Conquer
Horner’s Rule
68Transform and Conquer
Horner’s Rule
69Transform and Conquer
70
Algorithm:
Complication: T(n) = O(n)
0
i+1
i + 1
i < n
Horner’s Rule
Transform and Conquer
• Understand the concept of transform and conquer
• List the applications of presorting
• Explain the concept of Gauss elimination
• Use Horner’s rule for evaluating polynomials
• Find the lowest common multiple of two numbers
71Transform and Conquer
LCM(m,n)
72Transform and Conquer
The smallest integer that is divisible by both m and n
LCM(m,n)
73Transform and Conquer
LCM(m,n)
74Transform and Conquer
LCM(m,n)
75Transform and Conquer
Calculate GCD using Euclid’s Algorithm
LCM(m,n)
76Transform and Conquer
LCM(m,n)
77Transform and Conquer
Euclid’s Algorithm
Problem Reduction
Resources
78Transform and Conquer
Algorithms_design and analysis [Harsh Bhasin] chapter 15.
Levitin A.-Introduction to the design and analysis of
algorithms-AW (2011) [Anany Levitin] chapter 6.
Transform and Conquer 79
Thanks for your listening

More Related Content

What's hot

Matrix chain multiplication
Matrix chain multiplicationMatrix chain multiplication
Matrix chain multiplicationRespa Peter
 
Algorithms Lecture 5: Sorting Algorithms II
Algorithms Lecture 5: Sorting Algorithms IIAlgorithms Lecture 5: Sorting Algorithms II
Algorithms Lecture 5: Sorting Algorithms IIMohamed Loey
 
Backtracking-N Queens Problem-Graph Coloring-Hamiltonian cycle
Backtracking-N Queens Problem-Graph Coloring-Hamiltonian cycleBacktracking-N Queens Problem-Graph Coloring-Hamiltonian cycle
Backtracking-N Queens Problem-Graph Coloring-Hamiltonian cyclevarun arora
 
Gradient descent optimizer
Gradient descent optimizerGradient descent optimizer
Gradient descent optimizerHojin Yang
 
Fractional Knapsack Problem
Fractional Knapsack ProblemFractional Knapsack Problem
Fractional Knapsack Problemharsh kothari
 
Word2vec algorithm
Word2vec algorithmWord2vec algorithm
Word2vec algorithmAndrew Koo
 
01 knapsack using backtracking
01 knapsack using backtracking01 knapsack using backtracking
01 knapsack using backtrackingmandlapure
 
Module 8: Natural language processing Pt 1
Module 8:  Natural language processing Pt 1Module 8:  Natural language processing Pt 1
Module 8: Natural language processing Pt 1Sara Hooker
 
CSCE181 Big ideas in NLP
CSCE181 Big ideas in NLPCSCE181 Big ideas in NLP
CSCE181 Big ideas in NLPInsoo Chung
 
Language Detection Library for Java
Language Detection Library for Java Language Detection Library for Java
Language Detection Library for Java Shuyo Nakatani
 
Performance analysis(Time & Space Complexity)
Performance analysis(Time & Space Complexity)Performance analysis(Time & Space Complexity)
Performance analysis(Time & Space Complexity)swapnac12
 
Algorithms Lecture 3: Analysis of Algorithms II
Algorithms Lecture 3: Analysis of Algorithms IIAlgorithms Lecture 3: Analysis of Algorithms II
Algorithms Lecture 3: Analysis of Algorithms IIMohamed Loey
 

What's hot (20)

Matrix chain multiplication
Matrix chain multiplicationMatrix chain multiplication
Matrix chain multiplication
 
Algorithms Lecture 5: Sorting Algorithms II
Algorithms Lecture 5: Sorting Algorithms IIAlgorithms Lecture 5: Sorting Algorithms II
Algorithms Lecture 5: Sorting Algorithms II
 
Backtracking-N Queens Problem-Graph Coloring-Hamiltonian cycle
Backtracking-N Queens Problem-Graph Coloring-Hamiltonian cycleBacktracking-N Queens Problem-Graph Coloring-Hamiltonian cycle
Backtracking-N Queens Problem-Graph Coloring-Hamiltonian cycle
 
Gradient descent optimizer
Gradient descent optimizerGradient descent optimizer
Gradient descent optimizer
 
Fractional Knapsack Problem
Fractional Knapsack ProblemFractional Knapsack Problem
Fractional Knapsack Problem
 
Word2vec algorithm
Word2vec algorithmWord2vec algorithm
Word2vec algorithm
 
01 knapsack using backtracking
01 knapsack using backtracking01 knapsack using backtracking
01 knapsack using backtracking
 
Module 8: Natural language processing Pt 1
Module 8:  Natural language processing Pt 1Module 8:  Natural language processing Pt 1
Module 8: Natural language processing Pt 1
 
CSCE181 Big ideas in NLP
CSCE181 Big ideas in NLPCSCE181 Big ideas in NLP
CSCE181 Big ideas in NLP
 
Language Detection Library for Java
Language Detection Library for Java Language Detection Library for Java
Language Detection Library for Java
 
Avl trees
Avl treesAvl trees
Avl trees
 
Data Structure and Algorithm - Divide and Conquer
Data Structure and Algorithm - Divide and ConquerData Structure and Algorithm - Divide and Conquer
Data Structure and Algorithm - Divide and Conquer
 
What is word2vec?
What is word2vec?What is word2vec?
What is word2vec?
 
Performance analysis(Time & Space Complexity)
Performance analysis(Time & Space Complexity)Performance analysis(Time & Space Complexity)
Performance analysis(Time & Space Complexity)
 
Best,worst,average case .17581556 045
Best,worst,average case .17581556 045Best,worst,average case .17581556 045
Best,worst,average case .17581556 045
 
Np complete
Np completeNp complete
Np complete
 
Greedy algorithms
Greedy algorithmsGreedy algorithms
Greedy algorithms
 
Computational Complexity
Computational ComplexityComputational Complexity
Computational Complexity
 
Understanding GloVe
Understanding GloVeUnderstanding GloVe
Understanding GloVe
 
Algorithms Lecture 3: Analysis of Algorithms II
Algorithms Lecture 3: Analysis of Algorithms IIAlgorithms Lecture 3: Analysis of Algorithms II
Algorithms Lecture 3: Analysis of Algorithms II
 

Similar to Advanced Algorithms: Transform and conquer

02 - Discrete-Time Markov Models - incomplete.pptx
02 - Discrete-Time Markov Models - incomplete.pptx02 - Discrete-Time Markov Models - incomplete.pptx
02 - Discrete-Time Markov Models - incomplete.pptxAntonioDapporto1
 
Basic Calculus Basic Differentiation Rules
Basic Calculus Basic Differentiation RulesBasic Calculus Basic Differentiation Rules
Basic Calculus Basic Differentiation Rulesgilita1856
 
2.6 Other Types of Equations
2.6 Other Types of Equations2.6 Other Types of Equations
2.6 Other Types of Equationssmiller5
 
10 merge sort
10 merge sort10 merge sort
10 merge sortirdginfo
 
0.7 Radical Expressions
0.7 Radical Expressions0.7 Radical Expressions
0.7 Radical Expressionssmiller5
 
L4 Solving Equations that are Transformable into Quadratic Equations.pptx
L4 Solving Equations that are Transformable into Quadratic Equations.pptxL4 Solving Equations that are Transformable into Quadratic Equations.pptx
L4 Solving Equations that are Transformable into Quadratic Equations.pptxMarkJovenAlamalam2
 
CSP UNIT 2 AIML.ppt
CSP UNIT 2 AIML.pptCSP UNIT 2 AIML.ppt
CSP UNIT 2 AIML.pptssuser6e2b26
 
Integral and Differential CalculusI.pptx
Integral and Differential CalculusI.pptxIntegral and Differential CalculusI.pptx
Integral and Differential CalculusI.pptxJhennyRosePahed1
 
Group No 05, calculus.pptx
Group No 05, calculus.pptxGroup No 05, calculus.pptx
Group No 05, calculus.pptxEmonKundu
 
P1-07-Recurrences.pdf
P1-07-Recurrences.pdfP1-07-Recurrences.pdf
P1-07-Recurrences.pdfssuser08dcf1
 
Lecture Notes: EEEC4340318 Instrumentation and Control Systems - System Models
Lecture Notes:  EEEC4340318 Instrumentation and Control Systems - System ModelsLecture Notes:  EEEC4340318 Instrumentation and Control Systems - System Models
Lecture Notes: EEEC4340318 Instrumentation and Control Systems - System ModelsAIMST University
 
Exponent review
Exponent reviewExponent review
Exponent reviewewhitener
 
MATRICES AND CALCULUS.pptx
MATRICES AND CALCULUS.pptxMATRICES AND CALCULUS.pptx
MATRICES AND CALCULUS.pptxmassm99m
 

Similar to Advanced Algorithms: Transform and conquer (20)

02 - Discrete-Time Markov Models - incomplete.pptx
02 - Discrete-Time Markov Models - incomplete.pptx02 - Discrete-Time Markov Models - incomplete.pptx
02 - Discrete-Time Markov Models - incomplete.pptx
 
Basic Calculus Basic Differentiation Rules
Basic Calculus Basic Differentiation RulesBasic Calculus Basic Differentiation Rules
Basic Calculus Basic Differentiation Rules
 
Algorithm - Mergesort & Quicksort
Algorithm - Mergesort & Quicksort Algorithm - Mergesort & Quicksort
Algorithm - Mergesort & Quicksort
 
2.6 Other Types of Equations
2.6 Other Types of Equations2.6 Other Types of Equations
2.6 Other Types of Equations
 
Short notes on mathematics
Short notes on mathematicsShort notes on mathematics
Short notes on mathematics
 
10 merge sort
10 merge sort10 merge sort
10 merge sort
 
0.7 Radical Expressions
0.7 Radical Expressions0.7 Radical Expressions
0.7 Radical Expressions
 
L4 Solving Equations that are Transformable into Quadratic Equations.pptx
L4 Solving Equations that are Transformable into Quadratic Equations.pptxL4 Solving Equations that are Transformable into Quadratic Equations.pptx
L4 Solving Equations that are Transformable into Quadratic Equations.pptx
 
CSP UNIT 2 AIML.ppt
CSP UNIT 2 AIML.pptCSP UNIT 2 AIML.ppt
CSP UNIT 2 AIML.ppt
 
Rational equation ex
Rational equation exRational equation ex
Rational equation ex
 
jake.pptx
jake.pptxjake.pptx
jake.pptx
 
Integral and Differential CalculusI.pptx
Integral and Differential CalculusI.pptxIntegral and Differential CalculusI.pptx
Integral and Differential CalculusI.pptx
 
Group No 05, calculus.pptx
Group No 05, calculus.pptxGroup No 05, calculus.pptx
Group No 05, calculus.pptx
 
Calculus
CalculusCalculus
Calculus
 
P1-07-Recurrences.pdf
P1-07-Recurrences.pdfP1-07-Recurrences.pdf
P1-07-Recurrences.pdf
 
E2
E2E2
E2
 
Z transfrm ppt
Z transfrm pptZ transfrm ppt
Z transfrm ppt
 
Lecture Notes: EEEC4340318 Instrumentation and Control Systems - System Models
Lecture Notes:  EEEC4340318 Instrumentation and Control Systems - System ModelsLecture Notes:  EEEC4340318 Instrumentation and Control Systems - System Models
Lecture Notes: EEEC4340318 Instrumentation and Control Systems - System Models
 
Exponent review
Exponent reviewExponent review
Exponent review
 
MATRICES AND CALCULUS.pptx
MATRICES AND CALCULUS.pptxMATRICES AND CALCULUS.pptx
MATRICES AND CALCULUS.pptx
 

More from Abdulrazak Zakieh

Convolutional Neural Network (CNN)
Convolutional Neural Network (CNN)Convolutional Neural Network (CNN)
Convolutional Neural Network (CNN)Abdulrazak Zakieh
 
البريد الإلكتروني والبروتوكولات المستخدمة في الإرسال والاستقبال
البريد الإلكتروني والبروتوكولات المستخدمة في الإرسال والاستقبالالبريد الإلكتروني والبروتوكولات المستخدمة في الإرسال والاستقبال
البريد الإلكتروني والبروتوكولات المستخدمة في الإرسال والاستقبالAbdulrazak Zakieh
 
Hiding data into digital images (Steganography)
Hiding data into digital images (Steganography)Hiding data into digital images (Steganography)
Hiding data into digital images (Steganography)Abdulrazak Zakieh
 
Introduction to Deep learning
Introduction to Deep learningIntroduction to Deep learning
Introduction to Deep learningAbdulrazak Zakieh
 
برنامج محادثة باستخدام الاستدعاء العكسي بلغة الجافا
برنامج محادثة باستخدام الاستدعاء العكسي بلغة الجافابرنامج محادثة باستخدام الاستدعاء العكسي بلغة الجافا
برنامج محادثة باستخدام الاستدعاء العكسي بلغة الجافاAbdulrazak Zakieh
 
برنامج محادثة باستخدام الاستدعاء العكسي في استدعاء الطرق البعيدة بلغة الجافا ...
برنامج محادثة باستخدام الاستدعاء العكسي في استدعاء الطرق البعيدة بلغة الجافا ...برنامج محادثة باستخدام الاستدعاء العكسي في استدعاء الطرق البعيدة بلغة الجافا ...
برنامج محادثة باستخدام الاستدعاء العكسي في استدعاء الطرق البعيدة بلغة الجافا ...Abdulrazak Zakieh
 

More from Abdulrazak Zakieh (7)

Convolutional Neural Network (CNN)
Convolutional Neural Network (CNN)Convolutional Neural Network (CNN)
Convolutional Neural Network (CNN)
 
البريد الإلكتروني والبروتوكولات المستخدمة في الإرسال والاستقبال
البريد الإلكتروني والبروتوكولات المستخدمة في الإرسال والاستقبالالبريد الإلكتروني والبروتوكولات المستخدمة في الإرسال والاستقبال
البريد الإلكتروني والبروتوكولات المستخدمة في الإرسال والاستقبال
 
Hiding data into digital images (Steganography)
Hiding data into digital images (Steganography)Hiding data into digital images (Steganography)
Hiding data into digital images (Steganography)
 
Introduction to Deep learning
Introduction to Deep learningIntroduction to Deep learning
Introduction to Deep learning
 
برنامج محادثة باستخدام الاستدعاء العكسي بلغة الجافا
برنامج محادثة باستخدام الاستدعاء العكسي بلغة الجافابرنامج محادثة باستخدام الاستدعاء العكسي بلغة الجافا
برنامج محادثة باستخدام الاستدعاء العكسي بلغة الجافا
 
برنامج محادثة باستخدام الاستدعاء العكسي في استدعاء الطرق البعيدة بلغة الجافا ...
برنامج محادثة باستخدام الاستدعاء العكسي في استدعاء الطرق البعيدة بلغة الجافا ...برنامج محادثة باستخدام الاستدعاء العكسي في استدعاء الطرق البعيدة بلغة الجافا ...
برنامج محادثة باستخدام الاستدعاء العكسي في استدعاء الطرق البعيدة بلغة الجافا ...
 
The 555 timer
The 555 timerThe 555 timer
The 555 timer
 

Recently uploaded

Internship report on mechanical engineering
Internship report on mechanical engineeringInternship report on mechanical engineering
Internship report on mechanical engineeringmalavadedarshan25
 
Architect Hassan Khalil Portfolio for 2024
Architect Hassan Khalil Portfolio for 2024Architect Hassan Khalil Portfolio for 2024
Architect Hassan Khalil Portfolio for 2024hassan khalil
 
Electronically Controlled suspensions system .pdf
Electronically Controlled suspensions system .pdfElectronically Controlled suspensions system .pdf
Electronically Controlled suspensions system .pdfme23b1001
 
UNIT III ANALOG ELECTRONICS (BASIC ELECTRONICS)
UNIT III ANALOG ELECTRONICS (BASIC ELECTRONICS)UNIT III ANALOG ELECTRONICS (BASIC ELECTRONICS)
UNIT III ANALOG ELECTRONICS (BASIC ELECTRONICS)Dr SOUNDIRARAJ N
 
HARMONY IN THE NATURE AND EXISTENCE - Unit-IV
HARMONY IN THE NATURE AND EXISTENCE - Unit-IVHARMONY IN THE NATURE AND EXISTENCE - Unit-IV
HARMONY IN THE NATURE AND EXISTENCE - Unit-IVRajaP95
 
Call Us ≽ 8377877756 ≼ Call Girls In Shastri Nagar (Delhi)
Call Us ≽ 8377877756 ≼ Call Girls In Shastri Nagar (Delhi)Call Us ≽ 8377877756 ≼ Call Girls In Shastri Nagar (Delhi)
Call Us ≽ 8377877756 ≼ Call Girls In Shastri Nagar (Delhi)dollysharma2066
 
Introduction to Machine Learning Unit-3 for II MECH
Introduction to Machine Learning Unit-3 for II MECHIntroduction to Machine Learning Unit-3 for II MECH
Introduction to Machine Learning Unit-3 for II MECHC Sai Kiran
 
CCS355 Neural Network & Deep Learning UNIT III notes and Question bank .pdf
CCS355 Neural Network & Deep Learning UNIT III notes and Question bank .pdfCCS355 Neural Network & Deep Learning UNIT III notes and Question bank .pdf
CCS355 Neural Network & Deep Learning UNIT III notes and Question bank .pdfAsst.prof M.Gokilavani
 
EduAI - E learning Platform integrated with AI
EduAI - E learning Platform integrated with AIEduAI - E learning Platform integrated with AI
EduAI - E learning Platform integrated with AIkoyaldeepu123
 
Application of Residue Theorem to evaluate real integrations.pptx
Application of Residue Theorem to evaluate real integrations.pptxApplication of Residue Theorem to evaluate real integrations.pptx
Application of Residue Theorem to evaluate real integrations.pptx959SahilShah
 
Artificial-Intelligence-in-Electronics (K).pptx
Artificial-Intelligence-in-Electronics (K).pptxArtificial-Intelligence-in-Electronics (K).pptx
Artificial-Intelligence-in-Electronics (K).pptxbritheesh05
 
main PPT.pptx of girls hostel security using rfid
main PPT.pptx of girls hostel security using rfidmain PPT.pptx of girls hostel security using rfid
main PPT.pptx of girls hostel security using rfidNikhilNagaraju
 
Software and Systems Engineering Standards: Verification and Validation of Sy...
Software and Systems Engineering Standards: Verification and Validation of Sy...Software and Systems Engineering Standards: Verification and Validation of Sy...
Software and Systems Engineering Standards: Verification and Validation of Sy...VICTOR MAESTRE RAMIREZ
 
An experimental study in using natural admixture as an alternative for chemic...
An experimental study in using natural admixture as an alternative for chemic...An experimental study in using natural admixture as an alternative for chemic...
An experimental study in using natural admixture as an alternative for chemic...Chandu841456
 
Heart Disease Prediction using machine learning.pptx
Heart Disease Prediction using machine learning.pptxHeart Disease Prediction using machine learning.pptx
Heart Disease Prediction using machine learning.pptxPoojaBan
 
Gurgaon ✡️9711147426✨Call In girls Gurgaon Sector 51 escort service
Gurgaon ✡️9711147426✨Call In girls Gurgaon Sector 51 escort serviceGurgaon ✡️9711147426✨Call In girls Gurgaon Sector 51 escort service
Gurgaon ✡️9711147426✨Call In girls Gurgaon Sector 51 escort servicejennyeacort
 

Recently uploaded (20)

Internship report on mechanical engineering
Internship report on mechanical engineeringInternship report on mechanical engineering
Internship report on mechanical engineering
 
Architect Hassan Khalil Portfolio for 2024
Architect Hassan Khalil Portfolio for 2024Architect Hassan Khalil Portfolio for 2024
Architect Hassan Khalil Portfolio for 2024
 
Electronically Controlled suspensions system .pdf
Electronically Controlled suspensions system .pdfElectronically Controlled suspensions system .pdf
Electronically Controlled suspensions system .pdf
 
UNIT III ANALOG ELECTRONICS (BASIC ELECTRONICS)
UNIT III ANALOG ELECTRONICS (BASIC ELECTRONICS)UNIT III ANALOG ELECTRONICS (BASIC ELECTRONICS)
UNIT III ANALOG ELECTRONICS (BASIC ELECTRONICS)
 
HARMONY IN THE NATURE AND EXISTENCE - Unit-IV
HARMONY IN THE NATURE AND EXISTENCE - Unit-IVHARMONY IN THE NATURE AND EXISTENCE - Unit-IV
HARMONY IN THE NATURE AND EXISTENCE - Unit-IV
 
Call Us ≽ 8377877756 ≼ Call Girls In Shastri Nagar (Delhi)
Call Us ≽ 8377877756 ≼ Call Girls In Shastri Nagar (Delhi)Call Us ≽ 8377877756 ≼ Call Girls In Shastri Nagar (Delhi)
Call Us ≽ 8377877756 ≼ Call Girls In Shastri Nagar (Delhi)
 
Design and analysis of solar grass cutter.pdf
Design and analysis of solar grass cutter.pdfDesign and analysis of solar grass cutter.pdf
Design and analysis of solar grass cutter.pdf
 
Introduction to Machine Learning Unit-3 for II MECH
Introduction to Machine Learning Unit-3 for II MECHIntroduction to Machine Learning Unit-3 for II MECH
Introduction to Machine Learning Unit-3 for II MECH
 
Exploring_Network_Security_with_JA3_by_Rakesh Seal.pptx
Exploring_Network_Security_with_JA3_by_Rakesh Seal.pptxExploring_Network_Security_with_JA3_by_Rakesh Seal.pptx
Exploring_Network_Security_with_JA3_by_Rakesh Seal.pptx
 
CCS355 Neural Network & Deep Learning UNIT III notes and Question bank .pdf
CCS355 Neural Network & Deep Learning UNIT III notes and Question bank .pdfCCS355 Neural Network & Deep Learning UNIT III notes and Question bank .pdf
CCS355 Neural Network & Deep Learning UNIT III notes and Question bank .pdf
 
young call girls in Rajiv Chowk🔝 9953056974 🔝 Delhi escort Service
young call girls in Rajiv Chowk🔝 9953056974 🔝 Delhi escort Serviceyoung call girls in Rajiv Chowk🔝 9953056974 🔝 Delhi escort Service
young call girls in Rajiv Chowk🔝 9953056974 🔝 Delhi escort Service
 
EduAI - E learning Platform integrated with AI
EduAI - E learning Platform integrated with AIEduAI - E learning Platform integrated with AI
EduAI - E learning Platform integrated with AI
 
Application of Residue Theorem to evaluate real integrations.pptx
Application of Residue Theorem to evaluate real integrations.pptxApplication of Residue Theorem to evaluate real integrations.pptx
Application of Residue Theorem to evaluate real integrations.pptx
 
Artificial-Intelligence-in-Electronics (K).pptx
Artificial-Intelligence-in-Electronics (K).pptxArtificial-Intelligence-in-Electronics (K).pptx
Artificial-Intelligence-in-Electronics (K).pptx
 
main PPT.pptx of girls hostel security using rfid
main PPT.pptx of girls hostel security using rfidmain PPT.pptx of girls hostel security using rfid
main PPT.pptx of girls hostel security using rfid
 
Software and Systems Engineering Standards: Verification and Validation of Sy...
Software and Systems Engineering Standards: Verification and Validation of Sy...Software and Systems Engineering Standards: Verification and Validation of Sy...
Software and Systems Engineering Standards: Verification and Validation of Sy...
 
9953056974 Call Girls In South Ex, Escorts (Delhi) NCR.pdf
9953056974 Call Girls In South Ex, Escorts (Delhi) NCR.pdf9953056974 Call Girls In South Ex, Escorts (Delhi) NCR.pdf
9953056974 Call Girls In South Ex, Escorts (Delhi) NCR.pdf
 
An experimental study in using natural admixture as an alternative for chemic...
An experimental study in using natural admixture as an alternative for chemic...An experimental study in using natural admixture as an alternative for chemic...
An experimental study in using natural admixture as an alternative for chemic...
 
Heart Disease Prediction using machine learning.pptx
Heart Disease Prediction using machine learning.pptxHeart Disease Prediction using machine learning.pptx
Heart Disease Prediction using machine learning.pptx
 
Gurgaon ✡️9711147426✨Call In girls Gurgaon Sector 51 escort service
Gurgaon ✡️9711147426✨Call In girls Gurgaon Sector 51 escort serviceGurgaon ✡️9711147426✨Call In girls Gurgaon Sector 51 escort service
Gurgaon ✡️9711147426✨Call In girls Gurgaon Sector 51 escort service
 

Advanced Algorithms: Transform and conquer

Editor's Notes

  1. 24 = 2.2.2.3, 60 = 2.2.3.5, lcm = 120