SlideShare a Scribd company logo
RECURSION AND BACKTRAKING
(Memoization, D&C, Combinations)
Present On
1. Hemalkumar Buha
Guide By :- Prof Sayara Banu
TOPIC
Backtracking
Introduction
Examples Of
Backtracking
Advantages
Disadvantages
No Solution
Yes Solution
INTRODUCTION
History
o ‘Backtrack’ the word was first introduced by Dr. D.H. Lehmer in 1950s.
o R.J. Walker was the first man who gave algorithmic description in 1960.
o Later developed by S. Golamb and L. Baumert.
BACKTRACKING
o Definition
 Constraint satisfaction.
 Modified process of BFA(brute force approach).
o Types of problems in backtracking
1. Decision
2. Enumeration
3. Optimization
BACKTRACKING ALGORITHM
 Explore
1. if N is a goal node, return “Success”.
2. If N is a leaf node ,return “failure”.
3. For each child (C) of N,
3.1 Explore C
3.1.1. if C was successful, return “Success”.
4. Return “failure”.
EXAMPLE
1) N-Queens
2) Gold Tunnel
3) Puzzles
4) Maze
5) Knight
EXPLAIN WITH N-QUEENS
• 4x4 Chase board arrange 4 queens that no two queens attack each other.
• Queens attack on horizontally, vertically or diagonally.
• So we will start by placing the first queen.
Q
Q
Q
Q
EXPLAIN WITH N-QUEENS
Q
Q
Q
Q
Q
Q
Q
Q
Q
Q
Q
Q
Q
Q
Q
Q
Q
Q
Q
Q
Q
Q
Q
Q
EXPLAIN WITH N-QUEENS
Q
Q
Q
Q
Q
Q
Q
Q
Q
Q
Q
Q
Q
Q
Q
Q
Solution
GOLD TUNNEL PROBLEM
• 3 Tunnel (Progress)
1 2 3
Gold Bag
Root
ADVANTAGES
1. Simple to implement.
2. More effective than dynamic programming.
3. Easy to code.
4. Code size is usually small.
DISADVANTAGES
1. Multiple functions calls are expensive.
2. Inefficient when there is lots of branching from one state.
3. Requires large amount of space as the each function state needs to be stored on
system stack.
REFERENCES
• www.udemy.com
• www.hackerearth.com
• www.geeksforgeeks.org
• www.slideshare.net
CERTIFICATE
Algorithm design and analysis

More Related Content

PPTX
User Interface Design In SDLC Model
PPTX
Paytm Pament Gate Way Api
PPTX
Remote machine With Cloud
PPTX
Screen Scraping Using Java
PPTX
Physical Layer
PPTX
Database design
PDF
2024 Trend Updates: What Really Works In SEO & Content Marketing
PDF
Storytelling For The Web: Integrate Storytelling in your Design Process
User Interface Design In SDLC Model
Paytm Pament Gate Way Api
Remote machine With Cloud
Screen Scraping Using Java
Physical Layer
Database design
2024 Trend Updates: What Really Works In SEO & Content Marketing
Storytelling For The Web: Integrate Storytelling in your Design Process

Recently uploaded (20)

PDF
168300704-gasification-ppt.pdfhghhhsjsjhsuxush
PDF
[EN] Industrial Machine Downtime Prediction
PDF
22.Patil - Early prediction of Alzheimer’s disease using convolutional neural...
PPTX
Introduction-to-Cloud-ComputingFinal.pptx
PPTX
The THESIS FINAL-DEFENSE-PRESENTATION.pptx
PPTX
Introduction to Knowledge Engineering Part 1
PDF
BF and FI - Blockchain, fintech and Financial Innovation Lesson 2.pdf
PDF
Mega Projects Data Mega Projects Data
PDF
Galatica Smart Energy Infrastructure Startup Pitch Deck
PDF
Clinical guidelines as a resource for EBP(1).pdf
PDF
Introduction to Data Science and Data Analysis
PPTX
Data_Analytics_and_PowerBI_Presentation.pptx
PPTX
STUDY DESIGN details- Lt Col Maksud (21).pptx
PPTX
SAP 2 completion done . PRESENTATION.pptx
PDF
Recruitment and Placement PPT.pdfbjfibjdfbjfobj
PPTX
IBA_Chapter_11_Slides_Final_Accessible.pptx
PPTX
Introduction to Basics of Ethical Hacking and Penetration Testing -Unit No. 1...
PPTX
Microsoft-Fabric-Unifying-Analytics-for-the-Modern-Enterprise Solution.pptx
PPT
Quality review (1)_presentation of this 21
168300704-gasification-ppt.pdfhghhhsjsjhsuxush
[EN] Industrial Machine Downtime Prediction
22.Patil - Early prediction of Alzheimer’s disease using convolutional neural...
Introduction-to-Cloud-ComputingFinal.pptx
The THESIS FINAL-DEFENSE-PRESENTATION.pptx
Introduction to Knowledge Engineering Part 1
BF and FI - Blockchain, fintech and Financial Innovation Lesson 2.pdf
Mega Projects Data Mega Projects Data
Galatica Smart Energy Infrastructure Startup Pitch Deck
Clinical guidelines as a resource for EBP(1).pdf
Introduction to Data Science and Data Analysis
Data_Analytics_and_PowerBI_Presentation.pptx
STUDY DESIGN details- Lt Col Maksud (21).pptx
SAP 2 completion done . PRESENTATION.pptx
Recruitment and Placement PPT.pdfbjfibjdfbjfobj
IBA_Chapter_11_Slides_Final_Accessible.pptx
Introduction to Basics of Ethical Hacking and Penetration Testing -Unit No. 1...
Microsoft-Fabric-Unifying-Analytics-for-the-Modern-Enterprise Solution.pptx
Quality review (1)_presentation of this 21
Ad
Ad

Algorithm design and analysis